You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/08/31 05:46:01 UTC

svn commit: r264933 - /directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/util/NamespaceTools.java

Author: akarasulu
Date: Tue Aug 30 20:45:56 2005
New Revision: 264933

URL: http://svn.apache.org/viewcvs?rev=264933&view=rev
Log:
Use the more general Name data type instead of LdapName

Modified:
    directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/util/NamespaceTools.java

Modified: directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/util/NamespaceTools.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/util/NamespaceTools.java?rev=264933&r1=264932&r2=264933&view=diff
==============================================================================
--- directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/util/NamespaceTools.java (original)
+++ directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/util/NamespaceTools.java Tue Aug 30 20:45:56 2005
@@ -419,7 +419,7 @@
      * @throws javax.naming.NamingException if the contexts are not related in the
      * ancestual sense
      */
-    public static Name getRelativeName( LdapName ancestor, LdapName descendant ) throws NamingException
+    public static Name getRelativeName( Name ancestor, Name descendant ) throws NamingException
     {
         LdapName rdn = new LdapName( descendant.toString() );