Bump required kotlin to 1.9

This commit is contained in:
DBotThePony 2023-12-25 11:40:15 +07:00
parent a5dcf5a331
commit d7c5b76098
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -89,8 +89,8 @@ public final class OverdriveThatMatters {
}
private static void checkIfKotlinIsInstalled() {
if (!KotlinVersion.CURRENT.isAtLeast(1, 8, 0)) {
throw new UnsupportedClassVersionError("Installed kotlin version is " + KotlinVersion.CURRENT + ", when at least 1.8.0 is required.");
if (!KotlinVersion.CURRENT.isAtLeast(1, 9, 0)) {
throw new UnsupportedClassVersionError("Installed kotlin version is " + KotlinVersion.CURRENT + ", when at least 1.9.0 is required.");
}
}