Commit 9e446f66 authored by Bill Lynch's avatar Bill Lynch Committed by bill

updated jdk 1.5 syntax


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@344 b35dd754-fafc-0310-a699-88a17e54d16e
parent 9c37aff6
......@@ -133,8 +133,7 @@ public class TabsTag extends BodyTagSupport {
String body = getBodyContent().getString();
// For each root item, print out an LI
AdminConsole.Item root = AdminConsole.getRootByChildID(pageID);
for (Iterator<AdminConsole.Item> iter=items.iterator(); iter.hasNext(); ) {
AdminConsole.Item item = iter.next();
for (AdminConsole.Item item : items) {
String value = body;
if (value != null) {
value = StringUtils.replace(value, "[id]", clean(item.getId()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment