reformat + optimize imports

This commit is contained in:
Raoul Van den Berge
2015-12-29 12:04:22 +01:00
parent 62d3f0436c
commit b4c3a32806
84 changed files with 178 additions and 281 deletions

View File

@@ -69,8 +69,7 @@ public class TileImporter extends TileMachine implements IInventory, ISidedInven
connectedInventory.setInventorySlotContents(currentSlot, null);
}
}
}
else if (getController().push(slot.copy()))
} else if (getController().push(slot.copy()))
{
connectedInventory.setInventorySlotContents(currentSlot, null);
}
@@ -105,8 +104,7 @@ public class TileImporter extends TileMachine implements IInventory, ISidedInven
if (mode == MODE_WHITELIST)
{
return true;
}
else if (mode == MODE_BLACKLIST)
} else if (mode == MODE_BLACKLIST)
{
return false;
}
@@ -301,8 +299,8 @@ public class TileImporter extends TileMachine implements IInventory, ISidedInven
public int[] getSlotsForFace(EnumFacing side)
{
return new int[]
{
};
{
};
}
@Override