< prev index next >

test/micro/org/openjdk/bench/vm/compiler/RBTreeSearch.java

Print this page
@@ -386,10 +386,11 @@
  
              KeyIteratorImpl() {
                  next = firstEntry;
              }
  
+             @SuppressWarnings("initialization")
              KeyIteratorImpl(final int k) {
                  if ((next = locateKey(k)) != null) {
                      if (next.key <= k) {
                          prev = next;
                          next = next.next();
< prev index next >