mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-05-19 12:07:05 +02:00
fix nesting
This commit is contained in:
parent
92eaba8081
commit
2096306107
@ -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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user