Replace call to simple setter from within class with inlined version

This commit is contained in:
thatsIch 2015-03-26 10:27:07 +01:00
parent 4b4693498d
commit 8ef286b9d6

View file

@ -60,10 +60,10 @@ public class MEInventoryHandler<T extends IAEStack<T>> implements IMEInventoryHa
this.monitor = this.internal instanceof IMEMonitor ? ( IMEMonitor<T> ) this.internal : null;
this.setPriority( 0 );
this.setWhitelist( IncludeExclude.WHITELIST );
this.myPriority = 0;
this.myWhitelist = IncludeExclude.WHITELIST;
this.setBaseAccess( AccessRestriction.READ_WRITE );
this.setPartitionList( new DefaultPriorityList<T>() );
this.myPartitionList = new DefaultPriorityList<T>();
}
@Override