mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
05.06.2013 0d82ac961234449bd0eb0767c16d65b8919ec435
opendj-sdk/opends/src/server/org/opends/server/util/StaticUtils.java
@@ -4647,7 +4647,7 @@
   * <code>public Iterator&lt;String&gt; myIteratorMethod();</code>
   * <p>
   * Classical use with for or while loop:
   *
   *
   * <pre>
   * for (Iterator&lt;String&gt; it = myIteratorMethod(); it.hasNext();)
   * {
@@ -4662,15 +4662,15 @@
   *   // use it
   * }
   * </pre>
   *
   *
   * Improved use with foreach:
   *
   *
   * <pre>
   * for (String s : StaticUtils.toIterable(myIteratorMethod()))
   * {
   * }
   * </pre>
   *
   *
   * </p>
   *
   * @param <T>