cg > node

This commit is contained in:
Clisprail
2014-12-25 13:37:54 +01:00
parent df10566519
commit efcb4dbb00
@@ -42,8 +42,8 @@ public class AddInterfaceAdapter implements Injectable {
addInterface(node, accessorPackage + interfaceClass);
}
protected static void addInterface(ClassNode cg, String i) {
cg.interfaces.add(i);
protected static void addInterface(ClassNode node, String i) {
node.interfaces.add(i);
}
@Override