Merge pull request #136 from afffsdd/master

Fix loading for individual .class files
This commit is contained in:
Kalen (Konloch) Kinloch 2016-05-17 16:22:58 -06:00
commit d2f6a07649

View file

@ -689,7 +689,7 @@ public class BytecodeViewer {
final ClassNode cn = JarUtils.getNode(bytes);
FileContainer container = new FileContainer(f);
container.files.put(fn, bytes);
container.files.put(cn.name + ".class", bytes);
container.add(cn);
BytecodeViewer.files.add(container);
} else {