You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2009/08/06 03:31:01 UTC

svn commit: r801489 - /commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Hex.java

Author: ggregory
Date: Thu Aug  6 01:31:01 2009
New Revision: 801489

URL: http://svn.apache.org/viewvc?rev=801489&view=rev
Log:
toString() Javadoc.

Modified:
    commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Hex.java

Modified: commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Hex.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Hex.java?rev=801489&r1=801488&r2=801489&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Hex.java (original)
+++ commons/proper/codec/trunk/src/java/org/apache/commons/codec/binary/Hex.java Thu Aug  6 01:31:01 2009
@@ -295,6 +295,9 @@
         this.charsetName = charsetName;
     }
 
+    /**
+     * Returns a string representation of the object, which includes the charset name.
+     */
     public String toString() {
         return super.toString() + "[charsetName=" + this.charsetName + "]";
     }