You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2007/07/01 19:18:59 UTC

svn commit: r552339 - /directory/shared/trunk/ldap/src/main/antlr/subtree-specification.g

Author: ersiner
Date: Sun Jul  1 10:18:59 2007
New Revision: 552339

URL: http://svn.apache.org/viewvc?view=rev&rev=552339
Log:
Workaround commit for DIRSERVER-916. Will better fix after resolving DIRSERVER-986.

Modified:
    directory/shared/trunk/ldap/src/main/antlr/subtree-specification.g

Modified: directory/shared/trunk/ldap/src/main/antlr/subtree-specification.g
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/antlr/subtree-specification.g?view=diff&rev=552339&r1=552338&r2=552339
==============================================================================
--- directory/shared/trunk/ldap/src/main/antlr/subtree-specification.g (original)
+++ directory/shared/trunk/ldap/src/main/antlr/subtree-specification.g Sun Jul  1 10:18:59 2007
@@ -80,7 +80,7 @@
 {
     private static final Logger log = LoggerFactory.getLogger( AntlrSubtreeSpecificationParser.class );
     
-    private final FilterParserImpl filterParser = new FilterParserImpl();
+    private FilterParserImpl filterParser;
     
     private NormalizerMappingResolver resolver;
     
@@ -162,6 +162,8 @@
             new String [] { "base", "specificExclusions", "minimum", "maximum", "specificationFilter" } );
     chopBeforeExclusions = new HashSet();
     chopAfterExclusions = new HashSet();
+    // always create a new filter parser in case we may have some statefulness problems with it
+    filterParser = new FilterParserImpl();
 }
     :
     OPEN_CURLY ( SP )*