blob: 717d0b3f1434d009bc24e72da3daf10b073a8e7a [file] [log] [blame]
// based on a false positive I found in Zookeeper
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
class FieldInitializationWithGeneric {
private Set<String> activeObservers =
Collections.newSetFromMap(new ConcurrentHashMap<String, Boolean>());
}