diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2017-01-27 11:32:28 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2017-01-27 11:32:28 +0300 |
| commit | 2db8e30b1d2151fdde5d08a6c06aef55f0c397d2 (patch) | |
| tree | e8cd0022f3a30a5c952092e0ea4c7ffdafcdf7bb /ihl/worldgen/ores/DebugScannerTileEntity.java | |
| parent | ffe23313fb7421b0a1849b420baf708999023f7b (diff) | |
License, readme and stuff
Diffstat (limited to 'ihl/worldgen/ores/DebugScannerTileEntity.java')
| -rw-r--r-- | ihl/worldgen/ores/DebugScannerTileEntity.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ihl/worldgen/ores/DebugScannerTileEntity.java b/ihl/worldgen/ores/DebugScannerTileEntity.java index 2102cf0..99778a9 100644 --- a/ihl/worldgen/ores/DebugScannerTileEntity.java +++ b/ihl/worldgen/ores/DebugScannerTileEntity.java @@ -24,7 +24,7 @@ public class DebugScannerTileEntity extends TileEntityInventory implements IHasG {
public final InvSlot itemsSlot;
private ItemStack lastItem;
- public List<String> oreDictionaryEntries = new ArrayList();
+ public List<String> oreDictionaryEntries = new ArrayList<String>();
public DebugScannerTileEntity()
{
@@ -54,7 +54,7 @@ public class DebugScannerTileEntity extends TileEntityInventory implements IHasG if(this.itemsSlot.get().stackTagCompound!=null)
{
this.oreDictionaryEntries.add("NBT keys:");
- Iterator iterator = this.itemsSlot.get().stackTagCompound.func_150296_c().iterator();
+ Iterator<?> iterator = this.itemsSlot.get().stackTagCompound.func_150296_c().iterator();
while(iterator.hasNext())
{
String entry = (String) iterator.next();
@@ -65,7 +65,7 @@ public class DebugScannerTileEntity extends TileEntityInventory implements IHasG if(ct!=null && ct.func_150296_c()!=null && !ct.func_150296_c().isEmpty())
{
this.oreDictionaryEntries.add(" -NBT compound tag subkeys:");
- Iterator stIterator = ct.func_150296_c().iterator();
+ Iterator<?> stIterator = ct.func_150296_c().iterator();
while(stIterator.hasNext())
{
String entry2 = (String) stIterator.next();
@@ -138,7 +138,7 @@ public class DebugScannerTileEntity extends TileEntityInventory implements IHasG }
@Override
- public ContainerBase getGuiContainer(EntityPlayer entityPlayer)
+ public ContainerBase<?> getGuiContainer(EntityPlayer entityPlayer)
{
return new DebugScannerContainer(entityPlayer, this);
}
|
