tmf: Switch tmf.core to Java 7 + fix warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / internal / tmf / core / trace / indexer / BTreeNodeCache.java
index c03ba077cf9b51fe7ba245fbcef03ce66c79d611..a0b8488564fb1547b646f7c2f90a7d0fcbd4f57f 100644 (file)
@@ -42,7 +42,7 @@ public class BTreeNodeCache {
      * kept at the front of the double-ended queue and the least recently used
      * node is kept at the back.
      */
-    private final Deque<BTreeNode> fCachedNodes = new ArrayDeque<BTreeNode>(CACHE_SIZE);
+    private final Deque<BTreeNode> fCachedNodes = new ArrayDeque<>(CACHE_SIZE);
 
     private int fCcheMisses = 0;
 
This page took 0.023665 seconds and 5 git commands to generate.