Fix spotbugs in mappingservice.inmemorydb
[lispflowmapping.git] / mappingservice / inmemorydb / src / main / java / org / opendaylight / lispflowmapping / inmemorydb / HashMapDb.java
index 5156d933209ac1493dd8bd0d27e28021a170c8e6..20d61470338a25e06cff15110d45c26bad05a6e8 100644 (file)
@@ -33,7 +33,7 @@ import org.slf4j.LoggerFactory;
 @Singleton
 @Component(service = ILispDAO.class, immediate = true, property = "type=default")
 public class HashMapDb implements ILispDAO, AutoCloseable {
-    protected static final Logger LOG = LoggerFactory.getLogger(HashMapDb.class);
+    private static final Logger LOG = LoggerFactory.getLogger(HashMapDb.class);
     private static final Object TABLES = "tables";
 
     private final ConcurrentMap<Object, ConcurrentMap<String, Object>> data = new ConcurrentHashMap<>();