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
@@ -48,7 +48,9 @@ public class CompassManager
CompassResult res = i.next();
long diff = now - res.time;
if( diff > 20000 )
{
i.remove();
}
}
CompassRequest r = new CompassRequest( attunement, x, y, z );
@@ -106,9 +108,13 @@ public class CompassManager
public boolean equals( Object obj )
{
if( obj == null )
{
return false;
}
if( this.getClass() != obj.getClass() )
{
return false;
}
CompassRequest other = (CompassRequest) obj;
return this.attunement == other.attunement && this.cx == other.cx && this.cdy == other.cdy && this.cz == other.cz;
}