Removing unnecessary parts.

This commit is contained in:
Jesse Boyd 2015-01-22 22:45:05 -07:00
parent c7efed95a2
commit ea60f471ad

View File

@ -119,16 +119,10 @@ public class PlotMeConverter {
if (owner == null) { if (owner == null) {
if (name.equals("*")) { if (name.equals("*")) {
owner = DBFunc.everyone; owner = DBFunc.everyone;
} else { }
try { else {
UUID uuid = uuidFromBytes(r.getBytes("ownerId")); sendMessage("&cCould not identify owner for plot: " + id +" -> " + name);
owner = UUIDHandler.getUUID(UUIDHandler.getName(uuid)); continue;
}
catch (Exception e) {}
if (owner == null) {
sendMessage("&cCould not identify owner for plot: " + id +" -> " + name);
continue;
}
} }
} }
final Plot plot = new Plot(id, owner, new ArrayList<UUID>(), new ArrayList<UUID>(), world); final Plot plot = new Plot(id, owner, new ArrayList<UUID>(), new ArrayList<UUID>(), world);