IDEA-134902 NPE during decompilation
This commit is contained in:
@@ -118,7 +118,7 @@ public class AssignmentExprent extends Exprent {
|
|||||||
if (field.isStatic() && fd.hasModifier(CodeConstants.ACC_FINAL)) {
|
if (field.isStatic() && fd.hasModifier(CodeConstants.ACC_FINAL)) {
|
||||||
fieldInClassInit = true;
|
fieldInClassInit = true;
|
||||||
}
|
}
|
||||||
if (node.wrapper.getHiddenMembers().contains(InterpreterUtil.makeUniqueKey(fd.getName(), fd.getDescriptor()))) {
|
if (node.wrapper != null && node.wrapper.getHiddenMembers().contains(InterpreterUtil.makeUniqueKey(fd.getName(), fd.getDescriptor()))) {
|
||||||
hiddenField = true;
|
hiddenField = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user