From 59685c84348f8d71dc3bbd3513c5eb10cc738a8e Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 03 Nov 2006 16:39:22 +0000
Subject: [PATCH] Refactor DN and RDN classes and improve their test coverage.
---
opends/src/server/org/opends/server/schema/RelativeSubtreeSpecificationSyntax.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/RelativeSubtreeSpecificationSyntax.java b/opends/src/server/org/opends/server/schema/RelativeSubtreeSpecificationSyntax.java
index b92910a..57e0aa6 100644
--- a/opends/src/server/org/opends/server/schema/RelativeSubtreeSpecificationSyntax.java
+++ b/opends/src/server/org/opends/server/schema/RelativeSubtreeSpecificationSyntax.java
@@ -278,7 +278,7 @@
// Use the subtree specification code to make this determination.
try {
- RelativeSubtreeSpecification.valueOf(new DN(), value.stringValue());
+ RelativeSubtreeSpecification.valueOf(DN.nullDN(), value.stringValue());
return true;
} catch (DirectoryException e) {
--
Gitblit v1.10.0