From cf364c082dfe5ea566abc3c20bc5546a4629c5eb Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 11:47:24 +0000
Subject: [PATCH] AutoRefactor: remove unnecessary use of "this" in method calls
---
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/LDAPReplicationDomain.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/LDAPReplicationDomain.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/LDAPReplicationDomain.java
index 8ca5231..d19a911 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/LDAPReplicationDomain.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/LDAPReplicationDomain.java
@@ -357,7 +357,7 @@
{
synchronized (this)
{
- this.wait(1000);
+ wait(1000);
if (!disabled && !stateSavingDisabled)
{
// save the ServerState
--
Gitblit v1.10.0