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 2018/03/28 22:17:23 UTC

svn commit: r1827949 - /commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantClass.java

Author: ggregory
Date: Wed Mar 28 22:17:23 2018
New Revision: 1827949

URL: http://svn.apache.org/viewvc?rev=1827949&view=rev
Log:
Javadoc improvements.

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantClass.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantClass.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantClass.java?rev=1827949&r1=1827948&r2=1827949&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantClass.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantClass.java Wed Mar 28 22:17:23 2018
@@ -27,7 +27,6 @@ import org.apache.bcel.Const;
  * This class is derived from the abstract {@link Constant}
  * and represents a reference to a (external) class.
  *
- * @version $Id$
  * @see     Constant
  */
 public final class ConstantClass extends Constant implements ConstantObject {
@@ -78,10 +77,10 @@ public final class ConstantClass extends
 
 
     /**
-     * Dump constant class to file stream in binary format.
+     * Dumps constant class to file stream in binary format.
      *
      * @param file Output file stream
-     * @throws IOException
+     * @throws IOException if an I/O error occurs writing to the DataOutputStream.
      */
     @Override
     public final void dump( final DataOutputStream file ) throws IOException {