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/30 11:39:55 UTC

svn commit: r1129087 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java

Author: simonetripodi
Date: Mon May 30 09:39:54 2011
New Revision: 1129087

URL: http://svn.apache.org/viewvc?rev=1129087&view=rev
Log:
fixed checkstyle violations: added missing @return tag.

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java?rev=1129087&r1=1129086&r2=1129087&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java Mon May 30 09:39:54 2011
@@ -186,6 +186,8 @@ public final class DigesterLoader
 
     /**
      * Return the "namespace aware" flag for parsers we create.
+     *
+     * @return true, if the "namespace aware" flag for parsers we create, false otherwise.
      */
     public boolean isNamespaceAware()
     {
@@ -301,6 +303,8 @@ public final class DigesterLoader
 
     /**
      * Return the set of DTD URL registrations, keyed by public identifier.
+     *
+     * @return the set of DTD URL registrations.
      */
     public Map<String, URL> getRegistrations()
     {