java.util.* is uggly, never return null
This commit is contained in:
parent
dd8435dc4d
commit
2e03bde3fe
@ -1,6 +1,11 @@
|
|||||||
package com.platymuus.bukkit.permissions;
|
package com.platymuus.bukkit.permissions;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A class representing the global and world nodes attached to a player or
|
* A class representing the global and world nodes attached to a player or
|
||||||
@ -55,7 +60,7 @@ public class PermissionInfo {
|
|||||||
} else if (node.startsWith("groups")) {
|
} else if (node.startsWith("groups")) {
|
||||||
return plugin.api.getGroupPermissions(node.replace("groups/", ""));
|
return plugin.api.getGroupPermissions(node.replace("groups/", ""));
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return new HashMap<String, Boolean>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -89,7 +94,7 @@ public class PermissionInfo {
|
|||||||
} else if (node.startsWith("groups")) {
|
} else if (node.startsWith("groups")) {
|
||||||
return plugin.api.getGroupPermissions(node.replace("groups/", ""), world);
|
return plugin.api.getGroupPermissions(node.replace("groups/", ""), world);
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return new HashMap<String, Boolean>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user