1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-04 01:51:58 +02:00

Minor cleanup

This commit is contained in:
KHobbits
2012-09-24 03:10:54 +01:00
parent 2bc87841d1
commit c356e92287
8 changed files with 18 additions and 24 deletions

View File

@@ -21,13 +21,13 @@ public class Teleport implements Runnable, ITeleport
private final Location location;
private final String name;
public Target(Location location)
Target(Location location)
{
this.location = location;
this.name = null;
}
public Target(Player entity)
Target(Player entity)
{
this.name = entity.getName();
this.location = null;