aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
diff options
context:
space:
mode:
authorhannibal00212 <hannibal00212@users.noreply.github.com>2022-07-08 14:03:31 +0000
committerGitHub Action <actions@github.com>2022-07-08 14:03:31 +0000
commit1da9cac1b5e92be35f21e4c4e527eddceca87187 (patch)
tree4f05a355df9c01c672d4ceb443dc706c33b09677 /src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
parentc8b5138a20b12abb22567928b3c1485636a888e0 (diff)
downloadSkyHanni-1da9cac1b5e92be35f21e4c4e527eddceca87187.tar.gz
SkyHanni-1da9cac1b5e92be35f21e4c4e527eddceca87187.tar.bz2
SkyHanni-1da9cac1b5e92be35f21e4c4e527eddceca87187.zip
Prettified Code!
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java')
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java b/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
index bddc76339..2a6975b32 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/textures/Textures.java
@@ -1,11 +1,11 @@
package com.thatgravyboat.skyblockhud.textures;
+import at.lorenz.mod.LorenzMod;
import com.google.common.collect.Lists;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
-import at.lorenz.mod.LorenzMod;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
@@ -26,7 +26,7 @@ public class Textures implements IResourceManagerReloadListener {
public static void setTexture(int selected) {
if (selected >= styles.size() || selected < 0) {
texture = DEFAULT_TEXTURE;
-// LorenzMod.config.misc.style = 0;
+ // LorenzMod.config.misc.style = 0;
} else {
texture = styles.get(selected);
}
@@ -52,7 +52,6 @@ public class Textures implements IResourceManagerReloadListener {
}
}
} catch (Exception ignored) {}
-
-// if (LorenzMod.config != null) setTexture(LorenzMod.config.misc.style);
+ // if (LorenzMod.config != null) setTexture(LorenzMod.config.misc.style);
}
}