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 6C90060C3 for ; Tue, 24 May 2011 05:46:45 +0000 (UTC) Received: (qmail 44530 invoked by uid 500); 24 May 2011 05:46:45 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 44282 invoked by uid 500); 24 May 2011 05:46:44 -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 44262 invoked by uid 99); 24 May 2011 05:46:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 May 2011 05:46:43 +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, 24 May 2011 05:46:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 777672388A2C; Tue, 24 May 2011 05:46:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1126876 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/FromAnnotationsRuleModule.java Date: Tue, 24 May 2011 05:46:20 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110524054620.777672388A2C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Tue May 24 05:46:20 2011 New Revision: 1126876 URL: http://svn.apache.org/viewvc?rev=1126876&view=rev Log: removed unneeded 'this' keyword Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/FromAnnotationsRuleModule.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/FromAnnotationsRuleModule.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/FromAnnotationsRuleModule.java?rev=1126876&r1=1126875&r2=1126876&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/FromAnnotationsRuleModule.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/FromAnnotationsRuleModule.java Tue May 24 05:46:20 2011 @@ -119,12 +119,12 @@ public abstract class FromAnnotationsRul } // TYPE - this.visitElements( type ); + visitElements( type ); if ( !type.isInterface() ) { // CONSTRUCTOR - this.visitElements( new PrivilegedAction[]>() + visitElements( new PrivilegedAction[]>() { public Constructor[] run() { @@ -133,7 +133,7 @@ public abstract class FromAnnotationsRul } ); // FIELD - this.visitElements( new PrivilegedAction() + visitElements( new PrivilegedAction() { public Field[] run() { @@ -143,7 +143,7 @@ public abstract class FromAnnotationsRul } // METHOD - this.visitElements( new PrivilegedAction() + visitElements( new PrivilegedAction() { public Method[] run() {