[CLASS UPDATE] Removing redundant modifiers int Locatable interface

This commit is contained in:
Fryslan
2016-06-26 21:32:45 +02:00
parent a622952623
commit 3639499a18
@@ -12,13 +12,13 @@ public interface Locatable {
* *
* @return location * @return location
*/ */
public Tile getLocation(); Tile getLocation();
/** /**
* Gets distance to this locatable instance * Gets distance to this locatable instance
* *
* @return distance from player to locatable * @return distance from player to locatable
*/ */
public int distanceTo(); int distanceTo();
} }