Skip to content

Commit

Permalink
fix(deobf): fix writing method mappings as fields entries (#1432)(PR #…
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E authored Apr 2, 2022
1 parent 2744c4b commit e784cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jadx-core/src/main/java/jadx/core/deobf/Deobfuscator.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private void fillDeobfPresets() {
for (MethodNode mth : cls.getMethods()) {
MethodInfo methodInfo = mth.getMethodInfo();
if (methodInfo.hasAlias()) {
deobfPresets.getFldPresetMap().put(methodInfo.getRawFullId(), methodInfo.getAlias());
deobfPresets.getMthPresetMap().put(methodInfo.getRawFullId(), methodInfo.getAlias());
}
}
}
Expand Down

0 comments on commit e784cbd

Please sign in to comment.