Interface cleanup

Specifying public in an interface is redundant.
This commit is contained in:
Nick 2016-03-14 18:55:44 -07:00
parent 76b3c14499
commit f5d02b2807
10 changed files with 49 additions and 46 deletions

View file

@ -2,7 +2,7 @@ package WayofTime.bloodmagic.api.teleport;
public interface ITeleport
{
public void teleport();
void teleport();
public int getTeleportCost();
int getTeleportCost();
}