Tabs and spaces.

This commit is contained in:
zeeZ 2011-05-16 20:51:18 +08:00 committed by Christian
parent 1ba9fe9cff
commit b76e6059ae
33 changed files with 306 additions and 306 deletions

View file

@ -9,7 +9,7 @@ public abstract class MapTile {
public World getWorld() {
return world;
}
public MapType getMap() {
return map;
}
@ -20,12 +20,12 @@ public abstract class MapTile {
this.world = world;
this.map = map;
}
@Override
public int hashCode() {
return getFilename().hashCode() ^ getWorld().hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj instanceof MapTile) {