BUG-7464: Cleanup Triemap
[yangtools.git] / third-party / triemap / src / test / java / org / opendaylight / yangtools / triemap / TestInstantiationSpeed.java
index be6cbb127442354cce3e3c1e0d07ead04eca3f23..7eafe1e52435c6c303fe1bd72f0da6d63de4516c 100644 (file)
@@ -27,7 +27,7 @@ public class TestInstantiationSpeed {
         final long start = System.nanoTime();
 
         for (int i = 0; i < COUNT; ++i) {
-            maps[i] = TrieMap.empty();
+            maps[i] = new TrieMap<>();
         }
 
         final long stop = System.nanoTime();