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:22:33 UTC

svn commit: r359049 - /directory/shared/ldap/branches/DN-refactoring/common/src/antlr/filter-parser.g

Author: elecharny
Date: Mon Dec 26 02:22:28 2005
New Revision: 359049

URL: http://svn.apache.org/viewcvs?rev=359049&view=rev
Log:
Deleted the monitor

Modified:
    directory/shared/ldap/branches/DN-refactoring/common/src/antlr/filter-parser.g

Modified: directory/shared/ldap/branches/DN-refactoring/common/src/antlr/filter-parser.g
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/DN-refactoring/common/src/antlr/filter-parser.g?rev=359049&r1=359048&r2=359049&view=diff
==============================================================================
--- directory/shared/ldap/branches/DN-refactoring/common/src/antlr/filter-parser.g (original)
+++ directory/shared/ldap/branches/DN-refactoring/common/src/antlr/filter-parser.g Mon Dec 26 02:22:28 2005
@@ -55,8 +55,6 @@
 // ----------------------------------------------------------------------------
 
 {
-    /** the monitor used to track the activities of this parser */
-    FilterParserMonitor monitor;
     /** the token stream selector used for multiplexing the underlying stream */
     TokenStreamSelector selector;
     /** the filter value encoding lexer */
@@ -96,19 +94,6 @@
     {
         this.valueParser = valueParser;
     }
-
-
-    /**
-     * Sets the monitor used to track the activities of this parser.
-     *
-     * @param monitor used to track the activities of this parser
-     */
-    public void setFilterParserMonitor( FilterParserMonitor monitor )
-    {
-        this.monitor = monitor;
-    }
-
-
     /**
      * Monitors FilterParser events where it matches a production.
      *
@@ -116,10 +101,6 @@
      */
     private void matchedProduction( String production )
     {
-        if ( this.monitor != null )
-        {
-            this.monitor.matchedProduction( production );
-        }
     }
 }