summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/bytecode/InnerClassWriter.java
diff options
context:
space:
mode:
authorGravatar jeff2015-03-16 12:52:09 -0400
committerGravatar jeff2015-03-16 12:52:09 -0400
commit563c5e08e3d61bfd39402a94e78bbaaf75623b04 (patch)
tree34e72c074fe35f62e46f395c01c586096ae4fece /src/cuchaz/enigma/bytecode/InnerClassWriter.java
parentfix a zillion issues with inner classes (diff)
downloadenigma-fork-563c5e08e3d61bfd39402a94e78bbaaf75623b04.tar.gz
enigma-fork-563c5e08e3d61bfd39402a94e78bbaaf75623b04.tar.xz
enigma-fork-563c5e08e3d61bfd39402a94e78bbaaf75623b04.zip
fix more inner class issues
Diffstat (limited to 'src/cuchaz/enigma/bytecode/InnerClassWriter.java')
-rw-r--r--src/cuchaz/enigma/bytecode/InnerClassWriter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuchaz/enigma/bytecode/InnerClassWriter.java b/src/cuchaz/enigma/bytecode/InnerClassWriter.java
index 976028d..bb64315 100644
--- a/src/cuchaz/enigma/bytecode/InnerClassWriter.java
+++ b/src/cuchaz/enigma/bytecode/InnerClassWriter.java
@@ -93,7 +93,7 @@ public class InnerClassWriter {
93 93
94 // get the new inner class name 94 // get the new inner class name
95 ClassEntry obfInnerClassEntry = obfClassEntry.buildClassEntry(obfClassChain); 95 ClassEntry obfInnerClassEntry = obfClassEntry.buildClassEntry(obfClassChain);
96 ClassEntry obfOuterClassEntry = obfInnerClassEntry.getOutermostClassEntry(); 96 ClassEntry obfOuterClassEntry = obfInnerClassEntry.getOuterClassEntry();
97 97
98 // here's what the JVM spec says about the InnerClasses attribute 98 // here's what the JVM spec says about the InnerClasses attribute
99 // append(inner, parent, 0 if anonymous else simple name, flags); 99 // append(inner, parent, 0 if anonymous else simple name, flags);