test/java/util/Collection/testlibrary/CollectionSupplier.java

Print this page
rev 7682 : 8021591: Additional explicit null checks
Reviewed-by: duke

@@ -94,13 +94,11 @@
             this.collection = collection;
         }
 
         @Override
         public String toString() {
-            return name + " " + className +
-                    "\n original: " + original +
-                    "\n   target: " + collection;
+            return name + " " + className;
         }
     }
 
     /**
      * Shuffle a list using a PRNG with known seed for repeatability