Commit 9e92b142bdbce64953254fbf4bf7e8c2bb04cbfc

Authored by Mumfrey
1 parent cf21b1b3

Change assignment order in AccessorInjection ctor, fixes #83. Thanks Sollace.

java/common/com/mumfrey/liteloader/transformers/access/AccessorTransformer.java
@@ -92,10 +92,10 @@ public abstract class AccessorTransformer extends ClassTransformer @@ -92,10 +92,10 @@ public abstract class AccessorTransformer extends ClassTransformer
92 throw new RuntimeException("Accessor interface must not extend other interfaces. Found " + interfaceList + " in " + iface); 92 throw new RuntimeException("Accessor interface must not extend other interfaces. Found " + interfaceList + " in " + iface);
93 } 93 }
94 94
95 - this.table = this.setupTable(ifaceNode);  
96 - this.target = this.setupTarget(ifaceNode);  
97 this.iface = iface; 95 this.iface = iface;
98 this.obfProvider = obfProvider; 96 this.obfProvider = obfProvider;
  97 + this.table = this.setupTable(ifaceNode);
  98 + this.target = this.setupTarget(ifaceNode);
99 } 99 }
100 100
101 /** 101 /**