Skip to content

Commit

Permalink
fix nesting
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Oct 27, 2024
1 parent 92eaba8 commit 2096306
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/2_2_1_fingerprinting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;

<accessFlags> class AdsLoader {
public final boolean <methodName>(boolean <parameter>) {
// ...
<accessFlags> class AdsLoader {
public final boolean <methodName>(boolean <parameter>) {
// ...

var userStatus = "pro";
var userStatus = "pro";

// ...
// ...

return <returnValue>;
}
return <returnValue>;
}
}
```

Using that fingerprint, this method can be matched uniquely from all other methods.
Expand Down

0 comments on commit 2096306

Please sign in to comment.