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 8881657E1 for ; Thu, 12 May 2011 18:51:30 +0000 (UTC) Received: (qmail 43732 invoked by uid 500); 12 May 2011 18:51:30 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 43684 invoked by uid 500); 12 May 2011 18:51:30 -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 43677 invoked by uid 99); 12 May 2011 18:51:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 May 2011 18:51:30 +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; Thu, 12 May 2011 18:51:27 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0602423889E7; Thu, 12 May 2011 18:51:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1102419 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java Date: Thu, 12 May 2011 18:51:06 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110512185107.0602423889E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Thu May 12 18:51:06 2011 New Revision: 1102419 URL: http://svn.apache.org/viewvc?rev=1102419&view=rev Log: no needs to set public modifier to interface methods Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java?rev=1102419&r1=1102418&r2=1102419&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java Thu May 12 18:51:06 2011 @@ -39,14 +39,14 @@ public interface ObjectCreationFactory * @param attributes the element's attributes * @throws Exception any exception thrown will be propagated upwards */ - public Object createObject( Attributes attributes ) + Object createObject( Attributes attributes ) throws Exception; /** *

* Returns the {@link Digester} that was set by the {@link FactoryCreateRule} upon initialization. */ - public Digester getDigester(); + Digester getDigester(); /** *

@@ -55,6 +55,6 @@ public interface ObjectCreationFactory * * @param digester parent Digester object */ - public void setDigester( Digester digester ); + void setDigester( Digester digester ); }