langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/Content.java
changeset 17564 c329fe11193d
parent 17560 9f6771abbd1a
child 19667 fdfce85627a9
--- a/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/Content.java	Tue May 14 10:14:53 2013 -0700
+++ b/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/Content.java	Tue May 14 10:14:53 2013 -0700
@@ -96,8 +96,13 @@
         return !isEmpty();
     }
 
+    /**
+     * Return the number of characters of plain text content in this object
+     * (optional operation.)
+     * @return the number of characters of plain text content in this
+     */
     public int charCount() {
-        throw new UnsupportedOperationException();
+        return 0;
     }
 
     /**