Commit 676bb0b08cf42591c88e839cfb8d2a7af2c8fc5f

Authored by Mumfrey
1 parent a5044062

remove force validation

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));
... ...
resources/liteloader.properties
... ... @@ -2,4 +2,4 @@ search.mods=true
2 2 search.jar=false
3 3 search.classpath=true
4 4 log=stderr
5   -brand=LiteLoader public beta 4
6 5 \ No newline at end of file
  6 +brand=
7 7 \ No newline at end of file
... ...