Skip to content

Commit

Permalink
Fix typo in DexBackedMethodEncodedValue
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusFreke committed May 23, 2018
1 parent 88ece20 commit 2215e03
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@

public class DexBackedMethodEncodedValue extends BaseMethodEncodedValue {
@Nonnull public final DexBackedDexFile dexFile;
private final int MethodIndex;
private final int methodIndex;

public DexBackedMethodEncodedValue(@Nonnull DexReader reader, int valueArg) {
this.dexFile = reader.dexBuf;
MethodIndex = reader.readSizedSmallUint(valueArg + 1);
methodIndex = reader.readSizedSmallUint(valueArg + 1);
}

@Nonnull @Override public MethodReference getValue() {
return new DexBackedMethodReference(dexFile, MethodIndex);
return new DexBackedMethodReference(dexFile, methodIndex);
}
}

0 comments on commit 2215e03

Please sign in to comment.