Menu

#13 Example page has a missing java statement.

open
nobody
None
5
2012-12-07
2011-03-27
No

Example page has a missing java statement.

Current
[code]
for (Iterator iter = tableList.iterator(); iter.hasNext();) {
System.out.println(tableName);
}
[/code]

Should be
[code]
for (Iterator iter = tableList.iterator(); iter.hasNext();) {
String tableName = (String) iter.next();
System.out.println(tableName);
}

[/code]

Discussion

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.