BUG-7464: Split TrieMap into read-only and read-write
[yangtools.git] / third-party / triemap / src / test / java / org / opendaylight / yangtools / triemap / TestInstantiationSpeed.java
index 9424d072246c907b6f0b5bea8a00c06a68ff669c..52166037c7ca5f9c0a364fae457864de50e38d75 100644 (file)
@@ -33,7 +33,7 @@ public class TestInstantiationSpeed {
 
         final Stopwatch watch = Stopwatch.createStarted();
         for (int i = 0; i < COUNT; ++i) {
-            maps[i] = new TrieMap<>();
+            maps[i] = TrieMap.create();
         }
         watch.stop();