[FIX] Remove experimental warning

This commit is contained in:
Gravita 2023-07-16 13:59:45 +07:00
parent 890591d2d2
commit e887035920
3 changed files with 3 additions and 4 deletions

View file

@ -50,7 +50,6 @@
* Not a singletron
*/
public final class LaunchServer implements Runnable, AutoCloseable, Reconfigurable {
public static final Class<? extends LauncherBinary> defaultLauncherEXEBinaryClass = null;
/**
* Working folder path
*/

View file

@ -1,4 +1,4 @@
{
"features": ["sha1-hash"],
"features": [],
"info": []
}

View file

@ -6,9 +6,9 @@ public final class Version implements Comparable<Version> {
public static final int MAJOR = 5;
public static final int MINOR = 4;
public static final int PATCH = 2;
public static final int PATCH = 3;
public static final int BUILD = 1;
public static final Version.Type RELEASE = Type.EXPERIMENTAL;
public static final Version.Type RELEASE = Type.DEV;
public final int major;
public final int minor;
public final int patch;