1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-26 04:25:15 +01:00

We dont need error here

This commit is contained in:
Zrips 2018-08-10 17:07:33 +03:00
parent e43208ce22
commit 6accc15a4f
2 changed files with 1 additions and 2 deletions

View File

@ -596,7 +596,7 @@ public class ItemManager {
} }
} }
public enum CMIMaterial { public static enum CMIMaterial {
NONE(-1, -1, -1, "None"), NONE(-1, -1, -1, "None"),
ACACIA_BOAT(447, 0, 27326, "Acacia Boat", "BOAT_ACACIA"), ACACIA_BOAT(447, 0, 27326, "Acacia Boat", "BOAT_ACACIA"),
ACACIA_BUTTON(-1, -1, 13993, "Acacia Button", ""), ACACIA_BUTTON(-1, -1, 13993, "Acacia Button", ""),

View File

@ -79,7 +79,6 @@ public class ItemReflection {
Object res = meth.invoke(reg, res2); Object res = meth.invoke(reg, res2);
return res.toString(); return res.toString();
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace();
return null; return null;
} }
} }