Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B2CD366EE for ; Tue, 14 Jun 2011 10:55:42 +0000 (UTC) Received: (qmail 72297 invoked by uid 500); 14 Jun 2011 10:55:42 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 72233 invoked by uid 500); 14 Jun 2011 10:55:42 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 72226 invoked by uid 99); 14 Jun 2011 10:55:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2011 10:55:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Jun 2011 10:55:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1F41F2388AA9; Tue, 14 Jun 2011 10:55:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1135476 - /commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/AbstractFilter.java Date: Tue, 14 Jun 2011 10:55:19 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110614105519.1F41F2388AA9@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Tue Jun 14 10:55:18 2011 New Revision: 1135476 URL: http://svn.apache.org/viewvc?rev=1135476&view=rev Log: binary logical predicates made final, there's no need to override them Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/AbstractFilter.java Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/AbstractFilter.java URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/AbstractFilter.java?rev=1135476&r1=1135475&r2=1135476&view=diff ============================================================================== --- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/AbstractFilter.java (original) +++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/filter/AbstractFilter.java Tue Jun 14 10:55:18 2011 @@ -29,7 +29,7 @@ abstract class AbstractFilter /** * {@inheritDoc} */ - public Filter and( Filter other ) + public final Filter and( Filter other ) { return new And( this, other ); } @@ -37,7 +37,7 @@ abstract class AbstractFilter /** * {@inheritDoc} */ - public Filter nand( Filter other ) + public final Filter nand( Filter other ) { return new Not( and( other ) ); } @@ -45,7 +45,7 @@ abstract class AbstractFilter /** * {@inheritDoc} */ - public Filter or( Filter other ) + public final Filter or( Filter other ) { return new Or( this, other ); } @@ -53,7 +53,7 @@ abstract class AbstractFilter /** * {@inheritDoc} */ - public Filter nor( Filter other ) + public final Filter nor( Filter other ) { return new Not( or( other ) ); } @@ -61,12 +61,12 @@ abstract class AbstractFilter /** * {@inheritDoc} */ - public Filter xor( Filter other ) + public final Filter xor( Filter other ) { return new Xor( this, other ); } - public Filter xnor( Filter other ) + public final Filter xnor( Filter other ) { return new Not( xor( other ) ); }