Skip to content

Commit

Permalink
Fix all field/method members being marked as deobfuscated
Browse files Browse the repository at this point in the history
  • Loading branch information
caseif committed Sep 5, 2019
1 parent d36e3f2 commit 623f837
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public SelectableMember(CodeTab codeTab, MemberType type, String name, String de
updateText();

Optional<? extends Mapping> mapping = getMapping();
setDeobfuscated(!getName().equals(fullName) || (mapping.isPresent() && mapping.get().isAdHoc()));
setDeobfuscated((fullName != null && !getName().equals(fullName)) || (mapping.isPresent() && mapping.get().isAdHoc()));
}

private String getClassName() {
Expand Down

0 comments on commit 623f837

Please sign in to comment.