Replace call to simple setter from within class with inlined version
This commit is contained in:
parent
4b4693498d
commit
8ef286b9d6
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue