minor cleanup

master
Roman Shevchenko 10 years ago
parent 776bb79a9c
commit ed04ea2d69
  1. 12
      src/de/fernflower/main/ClassesProcessor.java

@ -281,12 +281,12 @@ public class ClassesProcessor {
int index = cl.qualifiedName.lastIndexOf("/");
if(index >= 0) {
String packageName = cl.qualifiedName.substring(0, index).replace('/', '.');
outwriter.write("package ");
outwriter.write(packageName);
outwriter.write(";");
outwriter.write(DecompilerContext.getNewLineSeparator());
outwriter.write(DecompilerContext.getNewLineSeparator());
}
outwriter.write("package ");
outwriter.write(packageName);
outwriter.write(";");
outwriter.write(DecompilerContext.getNewLineSeparator());
outwriter.write(DecompilerContext.getNewLineSeparator());
}
DecompilerContext.setProperty(DecompilerContext.CURRENT_CLASSNODE, root);

Loading…
Cancel
Save