QuackatronHQ / Gigarepo

Getter and setter method synchronization does not match JAVA-E1074
Bug risk
Major
4 days ago2 years old
 11
 12/** Performs a network call in parallel using the provided config options. */
 13public class APIQueryHandler {
 14  private Map<URL, ConfigData> configs; 15  private List<String> outputs;
 16  private static Lock LOCK = new ReentrantLock(true);
 17