Skip to content

Commit

Permalink
casting
Browse files Browse the repository at this point in the history
  • Loading branch information
akamel001 committed Apr 8, 2012
1 parent c3029d5 commit 16a2009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/SimpleDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public final class SimpleDB extends Thread {
private static String AttrName = "IPP";

//private static final HashSet<IPP> localMbrList = new HashSet<IPP>();
Set<IPP> localMbrList = Collections.newSetFromMap(new ConcurrentHashMap<IPP, Boolean>());
HashSet<IPP> localMbrList = (HashSet<IPP>) Collections.newSetFromMap(new ConcurrentHashMap<IPP, Boolean>());
private static SimpleDB db = new SimpleDB();

private SimpleDB() {
Expand Down

0 comments on commit 16a2009

Please sign in to comment.