Commit 676bb0b08cf42591c88e839cfb8d2a7af2c8fc5f
1 parent
a5044062
remove force validation
Showing
2 changed files
with
2 additions
and
2 deletions
java/common/com/mumfrey/liteloader/transformers/event/EventInjectionTransformer.java
... | ... | @@ -178,7 +178,7 @@ public abstract class EventInjectionTransformer extends ClassTransformer |
178 | 178 | } |
179 | 179 | } |
180 | 180 | |
181 | - if (true || this.runValidator) | |
181 | + if (this.runValidator) | |
182 | 182 | { |
183 | 183 | ClassWriter writer = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES); |
184 | 184 | classNode.accept(new CheckClassAdapter(writer)); | ... | ... |