Add and make use of Lombok Remove Mojang API Remove ZipFileUtils Remove StreamTools in favor of Apache IOUtils Keyframe should be abstract all derivatives final Replace clone in Keyframe with copy Move some constants from GuiReplaySetttings to GuiConstants
17 lines
429 B
Java
Executable File
17 lines
429 B
Java
Executable File
package eu.crushedpixel.replaymod.studio;
|
|
|
|
public class VersionValidator {
|
|
|
|
public static final boolean isValid;
|
|
|
|
static {
|
|
String version = Runtime.class.getPackage().getSpecificationVersion();
|
|
if(version != null) {
|
|
String[] split = version.split("\\.");
|
|
isValid = split.length > 1 && Integer.valueOf(split[1]) >= 7;
|
|
} else {
|
|
isValid = false;
|
|
}
|
|
}
|
|
}
|