ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/ListBash.java
(Generate patch)

Comparing jsr166/src/test/loops/ListBash.java (file contents):
Revision 1.7 by jsr166, Mon Nov 2 23:42:46 2009 UTC vs.
Revision 1.8 by jsr166, Mon Nov 2 23:51:32 2009 UTC

# Line 254 | Line 254 | public class ListBash {
254          if (!clone.containsAll(s))
255              fail("Copy does not contain list.");
256  
257 <        return (List<Integer>)clone;
257 >        return (List<Integer>) clone;
258      }
259  
260      static List<Integer> newList(Class cl, boolean synch) {
261          try {
262 <            List<Integer> s = (List<Integer>)cl.newInstance();
262 >            List<Integer> s = (List<Integer>) cl.newInstance();
263              if (synch)
264                  s = Collections.synchronizedList(s);
265              if (!s.isEmpty())

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines