Puts everywhere brackets

This commit is contained in:
thatsIch
2015-04-29 02:30:53 +02:00
parent 23aa8fd72d
commit 64ed05a1b4
465 changed files with 6726 additions and 14 deletions
@@ -90,7 +90,9 @@ public class CraftingWatcher implements ICraftingWatcher
public boolean add( IAEStack e )
{
if( this.myInterests.contains( e ) )
{
return false;
}
return this.myInterests.add( e.copy() ) && this.gsc.interestManager.put( e, this );
}
@@ -113,7 +115,9 @@ public class CraftingWatcher implements ICraftingWatcher
boolean didChange = false;
for( IAEStack o : c )
{
didChange = this.add( o ) || didChange;
}
return didChange;
}
@@ -123,7 +127,9 @@ public class CraftingWatcher implements ICraftingWatcher
{
boolean didSomething = false;
for( Object o : c )
{
didSomething = this.remove( o ) || didSomething;
}
return didSomething;
}