< prev index next >

test/jdk/java/util/Collection/IteratorMicroBenchmark.java

Print this page
8234131: Miscellaneous changes imported from jsr166 CVS 2021-01
Reviewed-by: martin

@@ -358,11 +358,10 @@
     boolean isMutable(Collection<Integer> x) {
         return !(x.getClass().getName().contains("ImmutableCollections$"));
     }
 
     Stream<Job> jobs(Collection<Integer> x) {
-        final String klazz = goodClassName(x);
         return concatStreams(
             collectionJobs(x),
 
             (isMutable(x))
             ? mutableCollectionJobs(x)
< prev index next >