diff --git a/pom.xml b/pom.xml index ba1242c..d204ec7 100644 --- a/pom.xml +++ b/pom.xml @@ -71,7 +71,7 @@ -LOCAL - 2.10.1 + 2.11.0 BentoBoxWorld_Level bentobox-world https://sonarcloud.io @@ -127,18 +127,6 @@ - - spigot-repo - https://hub.spigotmc.org/nexus/content/repositories/snapshots - - - codemc-repo - https://repo.codemc.org/repository/maven-public/ - - - codemc-public - https://repo.codemc.org/repository/maven-public/ - jitpack.io @@ -154,6 +142,18 @@ songoda-public https://repo.songoda.com/repository/public/ + + spigot-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots + + + codemc-repo + https://repo.codemc.org/repository/maven-public/ + + + codemc-public + https://repo.codemc.org/repository/maven-public/ + @@ -331,10 +331,10 @@ maven-javadoc-plugin 3.0.1 + none false - -Xdoclint:none ${java.home}/bin/javadoc - 16 + 17 diff --git a/src/main/java/world/bentobox/level/Level.java b/src/main/java/world/bentobox/level/Level.java index 61789e5..0d02802 100644 --- a/src/main/java/world/bentobox/level/Level.java +++ b/src/main/java/world/bentobox/level/Level.java @@ -190,9 +190,9 @@ public class Level extends Addon { /** * Compares versions - * @param version1 - * @param version2 - * @return <0 if version 1 is older than version 2, =0 if the same, >0 if version 1 is newer than version 2 + * @param version1 version 1 + * @param version2 version 2 + * @return {@code <0 if version 1 is older than version 2, =0 if the same, >0 if version 1 is newer than version 2} */ public static int compareVersions(String version1, String version2) { int comparisonResult = 0;