You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2005/12/26 11:26:59 UTC

svn commit: r359052 - /directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/subtree/BaseSubtreeSpecification.java

Author: elecharny
Date: Mon Dec 26 02:26:54 2005
New Revision: 359052

URL: http://svn.apache.org/viewcvs?rev=359052&view=rev
Log:
Used LdapDN instead of LdapName

Modified:
    directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/subtree/BaseSubtreeSpecification.java

Modified: directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/subtree/BaseSubtreeSpecification.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/subtree/BaseSubtreeSpecification.java?rev=359052&r1=359051&r2=359052&view=diff
==============================================================================
--- directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/subtree/BaseSubtreeSpecification.java (original)
+++ directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/subtree/BaseSubtreeSpecification.java Mon Dec 26 02:26:54 2005
@@ -17,8 +17,8 @@
 package org.apache.ldap.common.subtree;
 
 
-import org.apache.ldap.common.name.LdapName;
 import org.apache.ldap.common.filter.ExprNode;
+import org.apache.ldap.common.name.LdapDN;
 
 import java.util.Set;
 import java.util.Collections;
@@ -64,7 +64,7 @@
      */
     public BaseSubtreeSpecification()
     {
-        this.base = new LdapName();
+        this.base = new LdapDN();
 
         this.minBaseDistance = 0;
 
@@ -88,7 +88,7 @@
      */
     public BaseSubtreeSpecification( ExprNode refinement )
     {
-        this.base = new LdapName();
+        this.base = new LdapDN();
 
         this.minBaseDistance = 0;