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/04/23 00:34:29 UTC

svn commit: r164287 - /directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/db/ScopeEnumerator.java

Author: elecharny
Date: Fri Apr 22 15:34:28 2005
New Revision: 164287

URL: http://svn.apache.org/viewcvs?rev=164287&view=rev
Log:
Corrected the typo Heirarchy -> Hierarchy (JIRA DIREVE-153)

Modified:
    directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/db/ScopeEnumerator.java

Modified: directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/db/ScopeEnumerator.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/db/ScopeEnumerator.java?rev=164287&r1=164286&r2=164287&view=diff
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/db/ScopeEnumerator.java (original)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/db/ScopeEnumerator.java Fri Apr 22 15:34:28 2005
@@ -94,7 +94,7 @@
     private NamingEnumeration enumerateChildren( String dn, boolean deref )
         throws NamingException
     {
-        Index idx = db.getHeirarchyIndex();
+        Index idx = db.getHierarchyIndex();
         final BigInteger id = db.getEntryId( dn );
         final NamingEnumeration children = idx.listIndices( id );