Commit 9e92b142bdbce64953254fbf4bf7e8c2bb04cbfc
1 parent
cf21b1b3
Change assignment order in AccessorInjection ctor, fixes #83. Thanks Sollace.
Showing
1 changed file
with
2 additions
and
2 deletions
java/common/com/mumfrey/liteloader/transformers/access/AccessorTransformer.java
... | ... | @@ -92,10 +92,10 @@ public abstract class AccessorTransformer extends ClassTransformer |
92 | 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 | 95 | this.iface = iface; |
98 | 96 | this.obfProvider = obfProvider; |
97 | + this.table = this.setupTable(ifaceNode); | |
98 | + this.target = this.setupTarget(ifaceNode); | |
99 | 99 | } |
100 | 100 | |
101 | 101 | /** | ... | ... |