minor cleanup
This commit is contained in:
@@ -281,12 +281,12 @@ public class ClassesProcessor {
|
|||||||
int index = cl.qualifiedName.lastIndexOf("/");
|
int index = cl.qualifiedName.lastIndexOf("/");
|
||||||
if(index >= 0) {
|
if(index >= 0) {
|
||||||
String packageName = cl.qualifiedName.substring(0, index).replace('/', '.');
|
String packageName = cl.qualifiedName.substring(0, index).replace('/', '.');
|
||||||
outwriter.write("package ");
|
outwriter.write("package ");
|
||||||
outwriter.write(packageName);
|
outwriter.write(packageName);
|
||||||
outwriter.write(";");
|
outwriter.write(";");
|
||||||
outwriter.write(DecompilerContext.getNewLineSeparator());
|
outwriter.write(DecompilerContext.getNewLineSeparator());
|
||||||
outwriter.write(DecompilerContext.getNewLineSeparator());
|
outwriter.write(DecompilerContext.getNewLineSeparator());
|
||||||
}
|
}
|
||||||
|
|
||||||
DecompilerContext.setProperty(DecompilerContext.CURRENT_CLASSNODE, root);
|
DecompilerContext.setProperty(DecompilerContext.CURRENT_CLASSNODE, root);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user