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 50f6aca5515523a520e1962d204f05a851598c98 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Mar 24 16:23:02 2019 -0400 Javadoc fixes. --- src/main/java/org/apache/bcel/classfile/BootstrapMethod.java | 6 +++--- src/main/java/org/apache/bcel/classfile/LineNumber.java | 4 ++-- src/main/java/org/apache/bcel/classfile/LineNumberTable.java | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/bcel/classfile/BootstrapMethod.java b/src/main/java/org/apache/bcel/classfile/BootstrapMethod.java index 909fbfe..a742aea 100644 --- a/src/main/java/org/apache/bcel/classfile/BootstrapMethod.java +++ b/src/main/java/org/apache/bcel/classfile/BootstrapMethod.java @@ -70,7 +70,7 @@ public class BootstrapMethod implements Cloneable { /** * @param bootstrap_method_ref int index into constant_pool of CONSTANT_MethodHandle - * @param bootstrap_arguments int[] indices into constant_pool of CONSTANT_<type>_info + * @param bootstrap_arguments int[] indices into constant_pool of CONSTANT_[type]_info */ public BootstrapMethod(final int bootstrap_method_ref, final int[] bootstrap_arguments) { this.bootstrap_method_ref = bootstrap_method_ref; @@ -92,7 +92,7 @@ public class BootstrapMethod implements Cloneable { } /** - * @return int[] of bootstrap_method indices into constant_pool of CONSTANT_<type>_info + * @return int[] of bootstrap_method indices into constant_pool of CONSTANT_[type]_info */ public int[] getBootstrapArguments() { return bootstrap_arguments; @@ -106,7 +106,7 @@ public class BootstrapMethod implements Cloneable { } /** - * @param bootstrap_arguments int[] indices into constant_pool of CONSTANT_<type>_info + * @param bootstrap_arguments int[] indices into constant_pool of CONSTANT_[type]_info */ public void setBootstrapArguments(final int[] bootstrap_arguments) { this.bootstrap_arguments = bootstrap_arguments; diff --git a/src/main/java/org/apache/bcel/classfile/LineNumber.java b/src/main/java/org/apache/bcel/classfile/LineNumber.java index d766cdc..71a8792 100644 --- a/src/main/java/org/apache/bcel/classfile/LineNumber.java +++ b/src/main/java/org/apache/bcel/classfile/LineNumber.java @@ -51,7 +51,7 @@ public final class LineNumber implements Cloneable, Node { * Construct object from file stream. * * @param file Input stream - * @throws IOEXception if an I/O Exception occurs in readUnsignedShort + * @throws IOException if an I/O Exception occurs in readUnsignedShort */ LineNumber(final DataInput file) throws IOException { this(file.readUnsignedShort(), file.readUnsignedShort()); @@ -85,7 +85,7 @@ public final class LineNumber implements Cloneable, Node { * Dump line number/pc pair to file stream in binary format. * * @param file Output file stream - * @throws IOEXception if an I/O Exception occurs in writeShort + * @throws IOException if an I/O Exception occurs in writeShort */ public final void dump( final DataOutputStream file ) throws IOException { file.writeShort(start_pc); diff --git a/src/main/java/org/apache/bcel/classfile/LineNumberTable.java b/src/main/java/org/apache/bcel/classfile/LineNumberTable.java index 672284a..1f376e7 100644 --- a/src/main/java/org/apache/bcel/classfile/LineNumberTable.java +++ b/src/main/java/org/apache/bcel/classfile/LineNumberTable.java @@ -66,7 +66,7 @@ public final class LineNumberTable extends Attribute { * @param length Content length in bytes * @param input Input stream * @param constant_pool Array of constants - * @throws IOEXception if an I/O Exception occurs in readUnsignedShort + * @throws IOException if an I/O Exception occurs in readUnsignedShort */ LineNumberTable(final int name_index, final int length, final DataInput input, final ConstantPool constant_pool) throws IOException { @@ -96,7 +96,7 @@ public final class LineNumberTable extends Attribute { * Dump line number table attribute to file stream in binary format. * * @param file Output file stream - * @throws IOEXception if an I/O Exception occurs in writeShort + * @throws IOException if an I/O Exception occurs in writeShort */ @Override public final void dump( final DataOutputStream file ) throws IOException {