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.