Fixed a typo in a comment and in a method name. Made ClassWriter.invokeProcessors static since it no longer relies on any non-static fields.

This commit is contained in:
Christopher Carpenter
2016-03-14 02:02:36 -04:00
committed by Roman Shevchenko
parent f643b1c870
commit c32fce0d02
4 changed files with 18 additions and 12 deletions

View File

@@ -54,7 +54,7 @@ public class ClassWriter {
interceptor = DecompilerContext.getPoolInterceptor();
}
private void invokeProcessors(ClassNode node) {
private static void invokeProcessors(ClassNode node) {
ClassWrapper wrapper = node.getWrapper();
StructClass cl = wrapper.getClassStruct();