summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/main/rels/NestedClassProcessor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/jetbrains/java/decompiler/main/rels/NestedClassProcessor.java')
-rw-r--r--src/org/jetbrains/java/decompiler/main/rels/NestedClassProcessor.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/org/jetbrains/java/decompiler/main/rels/NestedClassProcessor.java b/src/org/jetbrains/java/decompiler/main/rels/NestedClassProcessor.java
index 1882346..6e40fcb 100644
--- a/src/org/jetbrains/java/decompiler/main/rels/NestedClassProcessor.java
+++ b/src/org/jetbrains/java/decompiler/main/rels/NestedClassProcessor.java
@@ -124,6 +124,9 @@ public class NestedClassProcessor {
* But they add the field to the END of the fields list.
*/
private void gatherEnumSwitchMaps(ClassNode node) {
+ if (node.wrapper == null) {
+ return;
+ }
for (ClassNode child : node.nested) {
gatherEnumSwitchMaps(child);
}
@@ -231,7 +234,7 @@ public class NestedClassProcessor {
private static void setLambdaVars(ClassNode parent, ClassNode child) {
- if (child.lambda_information.is_method_reference) { // method reference, no code and no parameters
+ if (parent.wrapper == null || child.lambda_information.is_method_reference) { // method reference, no code and no parameters
return;
}