Skip to content

Commit

Permalink
Abide to Java naming conventions in one place
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakllp committed Dec 7, 2024
1 parent 0ab36d6 commit 4e7cc91
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public CompatUtil() {
}

if (internalVersion == null) {
internalVersion = GetBukkitVersionFromMinecraftVersion();
internalVersion = getBukkitVersionFromMinecraftVersion();
}
}

Expand Down Expand Up @@ -130,7 +130,7 @@ public int compareWithMinecraftVersion(String version) {
throw new IllegalArgumentException("\"version\" must be a valid Minecraft version. \"" + version + "\" given.");
}

private String GetBukkitVersionFromMinecraftVersion() {
private String getBukkitVersionFromMinecraftVersion() {
HashMap<String, String> versionMap = new HashMap<>();
BufferedReader donation = null;
int timeout = 2000;
Expand Down

0 comments on commit 4e7cc91

Please sign in to comment.