Made Node.getPosition final and fixed some whitespace in LocalWorld.

This commit is contained in:
TomyLobo 2011-12-04 20:01:08 +01:00
parent a8e64fd8bc
commit 7a429e9932
2 changed files with 2 additions and 2 deletions

View File

@ -356,7 +356,7 @@ public abstract class LocalWorld {
return false;
}
private class QueuedEffect implements Comparable<QueuedEffect>{
private class QueuedEffect implements Comparable<QueuedEffect> {
private final Vector position;
private final int blockId;
private final double priority;

View File

@ -39,7 +39,7 @@ public abstract class Node implements RValue {
}
@Override
public int getPosition() {
public final int getPosition() {
return position;
}
}