Skip to content

Commit

Permalink
[DEX] Fix: FieldKey string parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
REAndroid committed Dec 1, 2024
1 parent cc90c22 commit 7849c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/reandroid/dex/key/FieldKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public static FieldKey parse(String text, int start) {

String name = text.substring(start, i);
start = start + name.length() + 1;
i = text.length() - start;
i = text.length();

TypeKey type = TypeKey.parseBinaryType(text, start, i);

Expand Down

0 comments on commit 7849c2f

Please sign in to comment.