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