Remove all warnings and magic strings from PlayerEvents :3

This commit is contained in:
Sauilitired
2015-07-28 15:25:03 +02:00
parent 89e3bd97f0
commit bfa877e607
4 changed files with 179 additions and 144 deletions

View File

@ -25,8 +25,8 @@ public class BukkitPlayer implements PlotPlayer {
private String name;
private int op = 0;
private long last = 0;
private HashSet<String> hasPerm = new HashSet<>();
private HashSet<String> noPerm = new HashSet<>();
public HashSet<String> hasPerm = new HashSet<>();
public HashSet<String> noPerm = new HashSet<>();
private HashMap<String, Object> meta;