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
The following commit(s) were added to refs/heads/master by this push: new a8a28711 Javadoc and don't use FQCN in throws clause. a8a28711 is described below commit a8a28711464966c5d2c23b1eee58f88b6cfccd51 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 21 14:52:21 2022 -0400 Javadoc and don't use FQCN in throws clause. --- src/examples/Mini/ASCII_CharStream.java | 6 +++--- src/main/java/org/apache/bcel/classfile/MethodParameter.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/examples/Mini/ASCII_CharStream.java b/src/examples/Mini/ASCII_CharStream.java index 9e27daf4..b6db95fa 100644 --- a/src/examples/Mini/ASCII_CharStream.java +++ b/src/examples/Mini/ASCII_CharStream.java @@ -95,7 +95,7 @@ public final class ASCII_CharStream tokenBegin = 0; } - static private void FillBuff() throws java.io.IOException + static private void FillBuff() throws IOException { if (maxNextCharInd == available) { @@ -141,7 +141,7 @@ public final class ASCII_CharStream } } - static public char BeginToken() throws java.io.IOException + static public char BeginToken() throws IOException { tokenBegin = -1; final char c = readChar(); @@ -190,7 +190,7 @@ public final class ASCII_CharStream bufcolumn[bufpos] = column; } - static public char readChar() throws java.io.IOException + static public char readChar() throws IOException { if (inBuf > 0) { diff --git a/src/main/java/org/apache/bcel/classfile/MethodParameter.java b/src/main/java/org/apache/bcel/classfile/MethodParameter.java index 04882434..a52dd76b 100644 --- a/src/main/java/org/apache/bcel/classfile/MethodParameter.java +++ b/src/main/java/org/apache/bcel/classfile/MethodParameter.java @@ -45,7 +45,7 @@ public class MethodParameter implements Cloneable { * Construct object from input stream. * * @param input Input stream - * @throws java.io.IOException + * @throws IOException * @throws ClassFormatException */ MethodParameter(final DataInput input) throws IOException {