forked from GeyserMC/Geyser
Remove try/catch from BlockTranslator and ItemTranslator
This commit is contained in:
parent
e60f47f65d
commit
54f6fada12
2 changed files with 115 additions and 126 deletions
|
@ -100,7 +100,6 @@ public class ItemRegistry {
|
|||
int itemIndex = 0;
|
||||
Iterator<Map.Entry<String, JsonNode>> iterator = items.fields();
|
||||
while (iterator.hasNext()) {
|
||||
try {
|
||||
Map.Entry<String, JsonNode> entry = iterator.next();
|
||||
if (entry.getValue().has("tool_type")) {
|
||||
if (entry.getValue().has("tool_tier")) {
|
||||
|
@ -132,10 +131,6 @@ public class ItemRegistry {
|
|||
}
|
||||
|
||||
itemIndex++;
|
||||
} catch (Exception e) {
|
||||
System.out.println("Exception in item registry! " + e.toString());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/* Load creative items */
|
||||
|
|
|
@ -117,7 +117,6 @@ public class BlockTranslator {
|
|||
int spawnerRuntimeId = -1;
|
||||
Iterator<Map.Entry<String, JsonNode>> blocksIterator = blocks.fields();
|
||||
while (blocksIterator.hasNext()) {
|
||||
try {
|
||||
javaRuntimeId++;
|
||||
Map.Entry<String, JsonNode> entry = blocksIterator.next();
|
||||
String javaId = entry.getKey();
|
||||
|
@ -210,11 +209,6 @@ public class BlockTranslator {
|
|||
}
|
||||
|
||||
bedrockRuntimeId++;
|
||||
} catch (Exception e) {
|
||||
// REMOVE AFTER 1.16 UPDATE PROBABLY
|
||||
System.out.println("Block translator error! " + e.toString());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
if (cobwebRuntimeId == -1) {
|
||||
|
|
Loading…
Reference in a new issue