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 2019/09/01 22:18:48 UTC

[commons-bcel] 03/06: Fix Javadocs.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit 53f2a5421cc49b3a085cc58be2cc638e141365b5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 1 18:14:20 2019 -0400

    Fix Javadocs.
---
 src/main/java/org/apache/bcel/classfile/NestHost.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/bcel/classfile/NestHost.java b/src/main/java/org/apache/bcel/classfile/NestHost.java
index 68fdfcb..b261148 100644
--- a/src/main/java/org/apache/bcel/classfile/NestHost.java
+++ b/src/main/java/org/apache/bcel/classfile/NestHost.java
@@ -47,7 +47,7 @@ public final class NestHost extends Attribute {
     /**
      * @param name_index Index in constant pool
      * @param length Content length in bytes
-     * @param int Host class index
+     * @param host_class_index Host class index
      * @param constant_pool Array of constants
      */
     public NestHost(final int name_index, final int length, final int host_class_index,
@@ -88,7 +88,7 @@ public final class NestHost extends Attribute {
      * Dump NestHost attribute to file stream in binary format.
      *
      * @param file Output file stream
-     * @throws IOException
+     * @throws IOException if an I/O error occurs.
      */
     @Override
     public void dump( final DataOutputStream file ) throws IOException {
@@ -106,7 +106,7 @@ public final class NestHost extends Attribute {
 
 
     /**
-     * @param int the host class index
+     * @param host_class_index the host class index
      */
     public void setHostClassIndex( final int host_class_index ) {
         this.host_class_index = host_class_index;