opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendCompareOperation.java
@@ -205,7 +205,7 @@ .valueOf(entryDN))); // See if one of the entry's ancestors exists. findAndSetMatchingDN(entryDN); setMatchedDN(findMatchedDN(entryDN)); return; } } @@ -337,7 +337,7 @@ } } private void findAndSetMatchingDN(DN entryDN) private DN findMatchedDN(DN entryDN) { try { @@ -346,8 +346,7 @@ { if (DirectoryServer.entryExists(matchedDN)) { setMatchedDN(matchedDN); return; return matchedDN; } matchedDN = matchedDN.getParentDNInSuffix(); @@ -360,6 +359,7 @@ TRACER.debugCaught(DebugLogLevel.ERROR, e); } } return null; } /**