fix nesting

This commit is contained in:
oSumAtrIX 2024-10-27 04:34:58 +01:00
parent 92eaba8081
commit 2096306107
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -115,19 +115,19 @@ The fingerprint contains the following information:
With this information, the original code can be reconstructed: With this information, the original code can be reconstructed:
```java ```java
package com.some.app.ads; package com.some.app.ads;
<accessFlags> class AdsLoader { <accessFlags> class AdsLoader {
public final boolean <methodName>(boolean <parameter>) { 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. Using that fingerprint, this method can be matched uniquely from all other methods.