mirror of
https://github.com/revanced/smali.git
synced 2025-05-07 09:54:34 +02:00
Fix typo in DexBackedMethodEncodedValue
This commit is contained in:
parent
88ece20f9f
commit
2215e031bf
@ -41,14 +41,14 @@ import javax.annotation.Nonnull;
|
|||||||
|
|
||||||
public class DexBackedMethodEncodedValue extends BaseMethodEncodedValue {
|
public class DexBackedMethodEncodedValue extends BaseMethodEncodedValue {
|
||||||
@Nonnull public final DexBackedDexFile dexFile;
|
@Nonnull public final DexBackedDexFile dexFile;
|
||||||
private final int MethodIndex;
|
private final int methodIndex;
|
||||||
|
|
||||||
public DexBackedMethodEncodedValue(@Nonnull DexReader reader, int valueArg) {
|
public DexBackedMethodEncodedValue(@Nonnull DexReader reader, int valueArg) {
|
||||||
this.dexFile = reader.dexBuf;
|
this.dexFile = reader.dexBuf;
|
||||||
MethodIndex = reader.readSizedSmallUint(valueArg + 1);
|
methodIndex = reader.readSizedSmallUint(valueArg + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nonnull @Override public MethodReference getValue() {
|
@Nonnull @Override public MethodReference getValue() {
|
||||||
return new DexBackedMethodReference(dexFile, MethodIndex);
|
return new DexBackedMethodReference(dexFile, methodIndex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user