Cleaned up a lot of different inspections

This commit is contained in:
Nicholas Ignoffo 2018-03-01 19:27:38 -08:00
parent 0dd0854bd9
commit 70d98455b7
207 changed files with 603 additions and 731 deletions

View file

@ -168,7 +168,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory,
}
public List<Integer> getAccessibleInputSlots(EnumFacing direction) {
List<Integer> list = new ArrayList<Integer>();
List<Integer> list = new ArrayList<>();
for (int i = 0; i < 6; i++) {
if (isInputSlotAccessible(i)) {
@ -185,7 +185,7 @@ public class TileAlchemyTable extends TileInventory implements ISidedInventory,
return;
}
List<ItemStack> inputList = new ArrayList<ItemStack>();
List<ItemStack> inputList = new ArrayList<>();
for (int i = 0; i < 6; i++) {
if (!getStackInSlot(i).isEmpty()) {