Skip to content

Commit

Permalink
Removed uuid field from Island.java. Not required.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed May 29, 2017
1 parent c0d69cd commit 14de7fa
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/com/wasteofplastic/askyblock/Island.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@
*/
public class Island implements Cloneable {
ASkyBlock plugin;
// Island UUID
private UUID uuid;
// Coordinates of the island area
private int minX;
private int minZ;
Expand Down Expand Up @@ -720,7 +718,6 @@ public void setLocked(boolean locked) {
*/
public String save() {
// x:height:z:protection range:island distance:owner UUID
String result = "";
String ownerString = "null";
if (isSpawn) {
// Bukkit.getLogger().info("DEBUG: island is spawn");
Expand Down Expand Up @@ -1035,18 +1032,4 @@ public void setSettings(String settings, List<String> settingsKey) {

}

/**
* @return the uuid
*/
public UUID getUuid() {
return uuid;
}

/**
* @param uuid the uuid to set
*/
public void setUuid(UUID uuid) {
this.uuid = uuid;
}

}

0 comments on commit 14de7fa

Please sign in to comment.