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/06/01 09:17:36 UTC

svn commit: r1130026 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Rule.java

Author: simonetripodi
Date: Wed Jun  1 07:17:35 2011
New Revision: 1130026

URL: http://svn.apache.org/viewvc?rev=1130026&view=rev
Log:
removed obsolete javadoc comments

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Rule.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Rule.java?rev=1130026&r1=1130025&r2=1130026&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Rule.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Rule.java Wed Jun  1 07:17:35 2011
@@ -101,9 +101,7 @@ public abstract class Rule
     // --------------------------------------------------------- Public Methods
 
     /**
-     * This method is called when the beginning of a matching XML element is encountered. The default implementation
-     * delegates to the deprecated method {@link #begin(Attributes) begin} without the <code>namespace</code> and
-     * <code>name</code> parameters, to retain backwards compatibility.
+     * This method is called when the beginning of a matching XML element is encountered.
      * 
      * @param namespace the namespace URI of the matching element, or an empty string if the parser is not namespace
      *            aware or the element has no namespace
@@ -121,9 +119,6 @@ public abstract class Rule
     /**
      * This method is called when the body of a matching XML element is encountered. If the element has no body, this
      * method is called with an empty string as the body text.
-     * <p>
-     * The default implementation delegates to the deprecated method {@link #body(String) body} without the
-     * <code>namespace</code> and <code>name</code> parameters, to retain backwards compatibility.
      * 
      * @param namespace the namespace URI of the matching element, or an empty string if the parser is not namespace
      *            aware or the element has no namespace
@@ -139,9 +134,7 @@ public abstract class Rule
     }
 
     /**
-     * This method is called when the end of a matching XML element is encountered. The default implementation delegates
-     * to the deprecated method {@link #end end} without the <code>namespace</code> and <code>name</code> parameters, to
-     * retain backwards compatibility.
+     * This method is called when the end of a matching XML element is encountered.
      * 
      * @param namespace the namespace URI of the matching element, or an empty string if the parser is not namespace
      *            aware or the element has no namespace