opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendModifyOperation.java
@@ -430,7 +430,7 @@ .get(String.valueOf(entryDN))); // See if one of the entry's ancestors exists. findAndSetMatchingDN(entryDN); setMatchedDN(findMatchedDN(entryDN)); return; } @@ -629,7 +629,7 @@ } } private void findAndSetMatchingDN(DN entryDN) private DN findMatchedDN(DN entryDN) { try { @@ -638,8 +638,7 @@ { if (DirectoryServer.entryExists(matchedDN)) { setMatchedDN(matchedDN); return; return matchedDN; } matchedDN = matchedDN.getParentDNInSuffix(); @@ -652,6 +651,7 @@ TRACER.debugCaught(DebugLogLevel.ERROR, e); } } return null; } /**