Whitespace + general cleanup

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
CraftBukkit/Spigot
2011-05-14 16:29:42 +02:00
parent 045c14c210
commit 776b9efd3e
21 changed files with 101 additions and 102 deletions

View File

@@ -59,7 +59,7 @@ public class CraftScheduler implements BukkitScheduler, Runnable {
firstTick = first.getExecutionTick();
if (currentTick >= firstTick ) {
if (currentTick >= firstTick) {
schedulerQueue.remove(first);
processTask(first);
if (first.getPeriod()>=0) {

View File

@@ -91,7 +91,7 @@ public class CraftTask implements Comparable<Object>, BukkitTask {
}
@Override
public boolean equals( Object other ) {
public boolean equals(Object other) {
if (other == null) {
return false;

View File

@@ -74,7 +74,7 @@ public class CraftWorker implements Runnable, BukkitWorker {
}
@Override
public boolean equals( Object other ) {
public boolean equals(Object other) {
if (other == null) {
return false;
}