FabricMC/Mixin

Gradle's Time Tracker using AP source version causing warning when running with Java 16

ellie-semele opened this issue · 1 comments

public SourceVersion getSupportedSourceVersion() {
try {
return SourceVersion.valueOf("RELEASE_8");
} catch (IllegalArgumentException ex) {
// Java 8 not supported
}

Should be safe to just return SourceVersion.latestSupported() if it is greater than RELEASE_8.

Fixed by: #53.

This was fixed, included with loader 0.12