Skip to content

Commit 7c7eac3

Browse files
EarthcomputerLlamaLad7
authored andcommitted
Don't initialize classes in mixin audit
1 parent 26c8d9c commit 7c7eac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/spongepowered/asm/mixin/transformer/MixinProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public void audit(MixinEnvironment environment) {
251251
for (String target : unhandled) {
252252
try {
253253
auditLogger.info("Force-loading class {}", target);
254-
this.service.getClassProvider().findClass(target, true);
254+
this.service.getClassProvider().findClass(target, false);
255255
} catch (ClassNotFoundException ex) {
256256
auditLogger.error("Could not force-load " + target, ex);
257257
}

0 commit comments

Comments
 (0)