I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit e924052f authored by zzz's avatar zzz
Browse files

final

parent 9ee8e045
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ import java.util.concurrent.ConcurrentHashMap; ...@@ -14,7 +14,7 @@ import java.util.concurrent.ConcurrentHashMap;
*/ */
public class ConcurrentHashSet<E> extends AbstractSet<E> implements Set<E> { public class ConcurrentHashSet<E> extends AbstractSet<E> implements Set<E> {
private static final Object DUMMY = new Object(); private static final Object DUMMY = new Object();
private Map<E, Object> _map; private final Map<E, Object> _map;
public ConcurrentHashSet() { public ConcurrentHashSet() {
_map = new ConcurrentHashMap(); _map = new ConcurrentHashMap();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment