Basic reformat, hit once, hope never again

This commit is contained in:
thatsIch
2015-04-03 08:54:31 +02:00
parent 4ff1631f89
commit d34c988c88
886 changed files with 31400 additions and 30990 deletions
+5 -3
View File
@@ -18,10 +18,12 @@
package appeng.util;
import java.util.concurrent.Callable;
import net.minecraft.world.World;
public class BlockUpdate implements Callable
{
@@ -30,7 +32,8 @@ public class BlockUpdate implements Callable
final int y;
final int z;
public BlockUpdate(World w, int x, int y, int z) {
public BlockUpdate( World w, int x, int y, int z )
{
this.w = w;
this.x = x;
this.y = y;
@@ -40,10 +43,9 @@ public class BlockUpdate implements Callable
@Override
public Object call() throws Exception
{
if ( this.w.blockExists( this.x, this.y, this.z ) )
if( this.w.blockExists( this.x, this.y, this.z ) )
this.w.notifyBlocksOfNeighborChange( this.x, this.y, this.z, Platform.AIR );
return true;
}
}