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

coulbeck
12.16.2006 f96897549e19d71e646baa33662ecb89fb234875
Javadoc correction and IDE warning that a lock field should be final when used with synchronized.
1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/synchronization/ChangelogBroker.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/synchronization/ChangelogBroker.java
@@ -66,7 +66,7 @@
  private Short identifier;
  private boolean connected = false;
  private SynchronizationDomain domain;
  private Object lock = new Object();
  private final Object lock = new Object();
  private String changelogServer = "Not connected";
  private TreeSet<FakeOperation> replayOperations;
  private ProtocolSession session = null;
@@ -316,7 +316,7 @@
  /**
   * Restart the Changelog broker after a failure.
   *
   * @param failingSocket the socket which failed
   * @param failingSession the socket which failed
   */
  private void reStart(ProtocolSession failingSession)
  {