Description

    Use enhanced for loops instead of iterator where possible.
    E.g.
    Iterator i = x.iterator();
    while (i.hasNext())
    X a = (X) i.next();

    Becomes:
    for (X a : x)

      Attachments

        Activity

          People

          • Assignee:
            dmsmith DM Smith
            Reporter:
            dmsmith DM Smith
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: