A whole lot of formatting cleanup

Also changes NBTHolder to a standard Constants class with subclasses for each category
This commit is contained in:
Nick 2015-11-28 18:25:46 -08:00
parent f9802900db
commit 34dee6447b
74 changed files with 861 additions and 662 deletions

View file

@ -10,9 +10,9 @@ public class Utils {
public static boolean isInteger(String integer) {
try {
Integer.parseInt(integer);
} catch(NumberFormatException e) {
} catch (NumberFormatException e) {
return false;
} catch(NullPointerException e) {
} catch (NullPointerException e) {
return false;
}
// only got here if we didn't return false
@ -21,7 +21,7 @@ public class Utils {
/**
* Used for inserting an ItemStack with a stacksize of 1 to a tile's inventory at slot 0.
*
* <p/>
* EG: Block Altar
*
* @param tile - The {@link TileInventory} to input the item to