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 3EBBC4F93 for ; Fri, 27 May 2011 23:37:42 +0000 (UTC) Received: (qmail 95601 invoked by uid 500); 27 May 2011 23:37:42 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 95543 invoked by uid 500); 27 May 2011 23:37: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 95536 invoked by uid 99); 27 May 2011 23:37:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 May 2011 23:37:41 +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; Fri, 27 May 2011 23:37:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DFB6C2388A33; Fri, 27 May 2011 23:37:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1128529 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java Date: Fri, 27 May 2011 23:37:18 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110527233718.DFB6C2388A33@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Fri May 27 23:37:18 2011 New Revision: 1128529 URL: http://svn.apache.org/viewvc?rev=1128529&view=rev Log: 'public'/'protected' modifier out of order with the JLS suggestions. Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java?rev=1128529&r1=1128528&r2=1128529&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java Fri May 27 23:37:18 2011 @@ -113,12 +113,12 @@ public abstract class AbstractRulesImpl * @param pattern Nesting pattern to be matched for this Rule * @param rule Rule instance to be registered */ - abstract protected void registerRule( String pattern, Rule rule ); + protected abstract void registerRule( String pattern, Rule rule ); /** * Clear all existing Rule instance registrations. */ - abstract public void clear(); + public abstract void clear(); /** * Return a List of all registered Rule instances that match the specified nesting pattern, or a zero-length List if @@ -143,13 +143,13 @@ public abstract class AbstractRulesImpl * namespace URI * @param pattern Nesting pattern to be matched */ - abstract public List match( String namespaceURI, String pattern ); + public abstract List match( String namespaceURI, String pattern ); /** * Return a List of all registered Rule instances, or a zero-length List if there are no registered Rule instances. * If more than one Rule instance has been registered, they must be returned in the order * originally registered through the add() method. */ - abstract public List rules(); + public abstract List rules(); }