Skip to content

Commit

Permalink
Changed the permissions map back to a HashMap.
Browse files Browse the repository at this point in the history
  • Loading branch information
DThielke committed Jan 8, 2012
1 parent 06bdff2 commit 2a347f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/dthielke/permissions/Group.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public class Group {
private final String name;
private Map<String, Boolean> permissions = new TreeMap<String, Boolean>();
private Map<String, Boolean> permissions = new HashMap<String, Boolean>();
private Set<Group> children = new HashSet<Group>();

public Group(String name) {
Expand Down

0 comments on commit 2a347f1

Please sign in to comment.