Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 25286 invoked from network); 26 Dec 2005 10:39:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Dec 2005 10:39:18 -0000 Received: (qmail 59256 invoked by uid 500); 26 Dec 2005 10:39:17 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 59219 invoked by uid 500); 26 Dec 2005 10:39:17 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 59208 invoked by uid 99); 26 Dec 2005 10:39:17 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Dec 2005 02:39:17 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 26 Dec 2005 02:39:16 -0800 Received: (qmail 25178 invoked by uid 65534); 26 Dec 2005 10:38:56 -0000 Message-ID: <20051226103856.25177.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r359057 - in /directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter: FilterParser.java FilterParserImpl.java Date: Mon, 26 Dec 2005 10:38:55 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Mon Dec 26 02:38:50 2005 New Revision: 359057 URL: http://svn.apache.org/viewcvs?rev=359057&view=rev Log: Deleted the monitor Modified: directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParser.java directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParserImpl.java Modified: directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParser.java URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParser.java?rev=359057&r1=359056&r2=359057&view=diff ============================================================================== --- directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParser.java (original) +++ directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParser.java Mon Dec 26 02:38:50 2005 @@ -39,11 +39,4 @@ * @throws ParseException if the input string does not conform to syntax */ ExprNode parse( String a_filter ) throws IOException, ParseException ; - - /** - * Sets the monitor for this filter parser. - * - * @param monitor monitor that recieves parser events - */ - void setFilterParserMonitor( FilterParserMonitor monitor ) ; } Modified: directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParserImpl.java URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParserImpl.java?rev=359057&r1=359056&r2=359057&view=diff ============================================================================== --- directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParserImpl.java (original) +++ directory/shared/ldap/branches/DN-refactoring/common/src/main/java/org/apache/ldap/common/filter/FilterParserImpl.java Mon Dec 26 02:38:50 2005 @@ -130,11 +130,4 @@ return root; } - - - public void setFilterParserMonitor( FilterParserMonitor monitor ) - { - this.parser.setFilterParserMonitor( monitor ); - this.valueParser.setFilterParserMonitor( monitor ); - } }