[Swift-commit] r4801 - trunk/src/org/griphyn/vdl/karajan/lib
hategan at ci.uchicago.edu
hategan at ci.uchicago.edu
Thu Jul 7 18:34:06 CDT 2011
Author: hategan
Date: 2011-07-07 18:34:06 -0500 (Thu, 07 Jul 2011)
New Revision: 4801
Modified:
trunk/src/org/griphyn/vdl/karajan/lib/New.java
Log:
generics
Modified: trunk/src/org/griphyn/vdl/karajan/lib/New.java
===================================================================
--- trunk/src/org/griphyn/vdl/karajan/lib/New.java 2011-07-07 23:27:17 UTC (rev 4800)
+++ trunk/src/org/griphyn/vdl/karajan/lib/New.java 2011-07-07 23:34:06 UTC (rev 4801)
@@ -98,7 +98,7 @@
"with a list of values");
}
int index = 0;
- Iterator i = ((List) value).iterator();
+ Iterator<?> i = ((List<?>) value).iterator();
while (i.hasNext()) {
// TODO check type consistency of elements with
// the type of the array
More information about the Swift-commit
mailing list