minor: fix wrong Logger in InMemoryDOMDataStoreFactory
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / src / main / java / org / opendaylight / mdsal / dom / store / inmemory / InMemoryDOMDataStoreFactory.java
index c040b2ce82b9f979bed71f190af0042f0e095828..0db38fe3aa3df5c1188640391edf05c15507544c 100644 (file)
@@ -64,6 +64,6 @@ public final class InMemoryDOMDataStoreFactory {
         // subsequent submitted notifications will block the calling thread.
         return SpecialExecutors.newBlockingBoundedFastThreadPool(
             props.getMaxDataChangeExecutorPoolSize(), props.getMaxDataChangeExecutorQueueSize(),
-            name + "-DCL", InMemoryDOMDataStore.class);
+            name + "-DCL", InMemoryDOMDataStoreFactory.class);
     }
 }