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 2004/06/11 17:45:56 UTC

svn commit: rev 21101 - incubator/directory/snickers/trunk/ldap-ber-provider/src/java/org/apache/snickers/ldap/search

Author: akarasulu
Date: Fri Jun 11 08:45:55 2004
New Revision: 21101

Modified:
   incubator/directory/snickers/trunk/ldap-ber-provider/src/java/org/apache/snickers/ldap/search/BaseSearchRequestRule.java
Log:
Commit changes ...

 o found bug that messed up correct state transitions



Modified: incubator/directory/snickers/trunk/ldap-ber-provider/src/java/org/apache/snickers/ldap/search/BaseSearchRequestRule.java
==============================================================================
--- incubator/directory/snickers/trunk/ldap-ber-provider/src/java/org/apache/snickers/ldap/search/BaseSearchRequestRule.java	(original)
+++ incubator/directory/snickers/trunk/ldap-ber-provider/src/java/org/apache/snickers/ldap/search/BaseSearchRequestRule.java	Fri Jun 11 08:45:55 2004
@@ -204,12 +204,12 @@
     {
         if ( isEnabled )
         {
+            processing.next();
             super.finish();
         }
 
         req = null;
         isEnabled = true;
-        processing.next(); 
         processing = null;
     }
 }