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

Jean-Noel Rouvignac
05.06.2013 51adbfd30934c65f90493a63d7e4a10fdf325301
OPENDJ-66 (CR-1365) DS does not failover between replication servers in different groups when configured explicitly for one of the groups 

Fixing checkstyle errors.
1 files modified
8 ■■■■ changed files
opends/src/server/org/opends/server/util/StaticUtils.java 8 ●●●● patch | view | raw | blame | history
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>