From 2096306107808170051520d08f0636d5059da47d Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sun, 27 Oct 2024 04:34:58 +0100 Subject: [PATCH] fix nesting --- docs/2_2_1_fingerprinting.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/2_2_1_fingerprinting.md b/docs/2_2_1_fingerprinting.md index 2deb4b5..1e43c51 100644 --- a/docs/2_2_1_fingerprinting.md +++ b/docs/2_2_1_fingerprinting.md @@ -115,19 +115,19 @@ The fingerprint contains the following information: With this information, the original code can be reconstructed: ```java - package com.some.app.ads; +package com.some.app.ads; - class AdsLoader { - public final boolean (boolean ) { - // ... + class AdsLoader { + public final boolean (boolean ) { + // ... - var userStatus = "pro"; + var userStatus = "pro"; - // ... + // ... - return ; - } + return ; } +} ``` Using that fingerprint, this method can be matched uniquely from all other methods.