Skip to content

Commit

Permalink
Fix generic expression
Browse files Browse the repository at this point in the history
  • Loading branch information
gamerforEA committed Oct 25, 2018
1 parent ec4ac13 commit eafc97d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/appeng/helpers/DualityInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ public class DualityInterface
private final AppEngInternalInventory storage = new AppEngInternalInventory(this, NUMBER_OF_STORAGE_SLOTS);
private final AppEngInternalInventory patterns = new AppEngInternalInventory(this, NUMBER_OF_PATTERN_SLOTS);
private final WrapperInvSlot slotInv = new WrapperInvSlot(this.storage);
private final MEMonitorPassThrough<IAEItemStack> items = new MEMonitorPassThrough<>(new NullInventory<>(), StorageChannel.ITEMS);
private final MEMonitorPassThrough<IAEFluidStack> fluids = new MEMonitorPassThrough<>(new NullInventory<>(), StorageChannel.FLUIDS);
private final MEMonitorPassThrough<IAEItemStack> items = new MEMonitorPassThrough<>(new NullInventory<IAEItemStack>(), StorageChannel.ITEMS);
private final MEMonitorPassThrough<IAEFluidStack> fluids = new MEMonitorPassThrough<>(new NullInventory<IAEFluidStack>(), StorageChannel.FLUIDS);
private final UpgradeInventory upgrades;
private boolean hasConfig = false;
private int priority;
Expand Down

0 comments on commit eafc97d

Please sign in to comment.