diff options
author | msg-programs <msgdoesstuff@gmail.com> | 2023-09-09 11:08:48 +0200 |
---|---|---|
committer | msg-programs <msgdoesstuff@gmail.com> | 2023-09-09 11:08:48 +0200 |
commit | 236454a49d54054c0719c4f14055ec718869dc4f (patch) | |
tree | 73435898788d1f654f900e27260961787518a38c /src/main/java/me/xmrvizzy/skyblocker/skyblock/item/AttributeShards.java | |
parent | 6ca63aa2a9da8ef23f093f35d2569ad8605f59ab (diff) | |
download | Skyblocker-236454a49d54054c0719c4f14055ec718869dc4f.tar.gz Skyblocker-236454a49d54054c0719c4f14055ec718869dc4f.tar.bz2 Skyblocker-236454a49d54054c0719c4f14055ec718869dc4f.zip |
Remove whitespace on empty lines
Diffstat (limited to 'src/main/java/me/xmrvizzy/skyblocker/skyblock/item/AttributeShards.java')
-rw-r--r-- | src/main/java/me/xmrvizzy/skyblocker/skyblock/item/AttributeShards.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/AttributeShards.java b/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/AttributeShards.java index 0f106cdf..8f71e7b9 100644 --- a/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/AttributeShards.java +++ b/src/main/java/me/xmrvizzy/skyblocker/skyblock/item/AttributeShards.java @@ -4,7 +4,7 @@ import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; public class AttributeShards { private static final Object2ObjectOpenHashMap<String, String> ID_2_SHORT_NAME = new Object2ObjectOpenHashMap<>(); - + static { //Weapons ID_2_SHORT_NAME.put("arachno", "A"); @@ -18,11 +18,11 @@ public class AttributeShards { ID_2_SHORT_NAME.put("mana_steal", "MS"); ID_2_SHORT_NAME.put("midas_touch", "MT"); ID_2_SHORT_NAME.put("undead", "U"); - + //Swords & Bows ID_2_SHORT_NAME.put("warrior", "W"); ID_2_SHORT_NAME.put("deadeye", "DE"); - + //Armor or Equipment ID_2_SHORT_NAME.put("arachno_resistance", "AR"); ID_2_SHORT_NAME.put("blazing_resistance", "BR"); @@ -40,7 +40,7 @@ public class AttributeShards { ID_2_SHORT_NAME.put("speed", "S"); ID_2_SHORT_NAME.put("undead_resistance", "UR"); ID_2_SHORT_NAME.put("veteran", "V"); - + //Fishing Gear ID_2_SHORT_NAME.put("blazing_fortune", "BF"); ID_2_SHORT_NAME.put("fishing_experience", "FE"); @@ -50,9 +50,9 @@ public class AttributeShards { ID_2_SHORT_NAME.put("fishing_speed", "FS"); ID_2_SHORT_NAME.put("hunter", "H"); ID_2_SHORT_NAME.put("trophy_hunter", "TH"); - + } - + public static String getShortName(String id) { return ID_2_SHORT_NAME.getOrDefault(id, ""); } |