3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

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

Dieser Commit ist enthalten in:
TomyLobo 2011-12-04 20:01:08 +01:00
Ursprung a8e64fd8bc
Commit 7a429e9932
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -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;

Datei anzeigen

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