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

Jean-Noel Rouvignac
02.27.2013 b795e027216c93c7feca7f6e8faece6f8f51985a
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ExternalChangeLogTest.java
@@ -96,7 +96,7 @@
  private static final DebugTracer TRACER = getTracer();
  /** The replicationServer that will be used in this test. */
  private ReplicationServer replicationServer = null;
  private ReplicationServer replicationServer;
  /** The port of the replicationServer. */
  private int replicationServerPort;
@@ -112,17 +112,15 @@
  private CSN gblCSN;
  private List<Control> NO_CONTROL = null;
  private int brokerSessionTimeout = 5000;
  private int maxWindow = 100;
  /**
   * When used in a search operation, it includes all attributes (user and
   * operational)
   */
  private final Set<String> ALL_ATTRIBUTES = newSet("+", "*");
  private static final Set<String> ALL_ATTRIBUTES = newSet("+", "*");
  private static final List<Control> NO_CONTROL = null;
  /**
   * Set up the environment for performing the tests in this Class.
@@ -3196,7 +3194,7 @@
    debugInfo(tn, "Ending test with success");
  }
  private SortedSet<String> newSet(String... values)
  private static SortedSet<String> newSet(String... values)
  {
    return new TreeSet<String>(Arrays.asList(values));
  }