You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/05/11 23:01:52 UTC

svn commit: r1102089 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSet.java

Author: simonetripodi
Date: Wed May 11 21:01:52 2011
New Revision: 1102089

URL: http://svn.apache.org/viewvc?rev=1102089&view=rev
Log:
no need to specify method visibility on interface

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSet.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSet.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSet.java?rev=1102089&r1=1102088&r2=1102089&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSet.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSet.java Wed May 11 21:01:52 2011
@@ -46,7 +46,7 @@ public interface RuleSet {
      * Return the namespace URI that will be applied to all Rule instances
      * created from this RuleSet.
      */
-    public String getNamespaceURI();
+    String getNamespaceURI();
 
 
     // --------------------------------------------------------- Public Methods
@@ -61,7 +61,7 @@ public interface RuleSet {
      * @param digester Digester instance to which the new Rule instances
      *  should be added.
      */
-    public void addRuleInstances(Digester digester);
+    void addRuleInstances(Digester digester);
 
 
 }