< prev index next >

src/com/sun/javatest/tool/Command.java

Print this page
rev 145 : 7902237: Fixing raw use of parameterized class
Reviewed-by: jjg

@@ -128,11 +128,11 @@
     /**
      * Back up the iterator to reject an argument, and remove the corresponding
      * entry from the argument array.
      * @param argIter the iterator from which teh argument was obtained
      */
-    protected void putbackArg(ListIterator argIter) {
+    protected void putbackArg(ListIterator<String> argIter) {
         argIter.previous();
         args.remove(args.size() - 1);
     }
 
     /**
< prev index next >