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

Comparing jsr166/src/test/loops/CollectionWordLoops.java (file contents):
Revision 1.3 by jsr166, Thu Oct 29 23:09:07 2009 UTC vs.
Revision 1.4 by jsr166, Mon Nov 2 23:42:46 2009 UTC

# Line 26 | Line 26 | public class CollectionWordLoops {
26          Class collectionClass = null;
27          try {
28              collectionClass = Class.forName(args[0]);
29 <        } catch(ClassNotFoundException e) {
29 >        } catch (ClassNotFoundException e) {
30              throw new RuntimeException("Class " + args[0] + " not found.");
31          }
32  
# Line 68 | Line 68 | public class CollectionWordLoops {
68          try {
69              Collection m = (Collection<String>)cl.newInstance();
70              return m;
71 <        } catch(Exception e) {
71 >        } catch (Exception e) {
72              throw new RuntimeException("Can't instantiate " + cl + ": " + e);
73          }
74      }
75  
76      static void pause() {
77 <        try { Thread.sleep(100); } catch(InterruptedException ie) { return; }
77 >        try { Thread.sleep(100); }
78 >        catch (InterruptedException ie) { return; }
79      }
80  
81      static String[] readWords(int sizeIndex) throws IOException {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines