Skip to content

Commit

Permalink
Update source version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubenicos committed May 8, 2023
1 parent dd369b4 commit f71d4ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.saicone.ezlib.internal11;
package com.saicone.ezlib.internal12;

import sun.misc.Unsafe;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.saicone.ezlib.internal11;
package com.saicone.ezlib.internal12;

import me.lucko.jarrelocator.JarRelocator;

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/saicone/ezlib/Ezlib.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class Ezlib {
/**
* Current ezlib version to download ezlib loader.
*/
public static String VERSION = "-SNAPSHOT";
public static String VERSION = "1.2";

/**
* Change current ezlib version to another one, use "-SNAPSHOT" for latest commit.
Expand Down Expand Up @@ -491,8 +491,8 @@ public class Loader {
*/
public Loader() throws ClassNotFoundException {
this(
Class.forName(GROUP + ".internal11.EzlibAppender", true, publicClassLoader),
Class.forName(GROUP + ".internal11.EzlibRelocator", true, publicClassLoader)
Class.forName(GROUP + ".internal12.EzlibAppender", true, publicClassLoader),
Class.forName(GROUP + ".internal12.EzlibRelocator", true, publicClassLoader)
);
}

Expand Down

0 comments on commit f71d4ab

Please sign in to comment.