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 e42ff659 Remove dead comment e42ff659 is described below commit e42ff6594b7c19634ed8f609c347a8027d71b828 Author: Gary David Gregory (Code signing key) <ggreg...@apache.org> AuthorDate: Thu Nov 17 11:04:03 2022 -0500 Remove dead comment --- src/main/java/org/apache/bcel/generic/Type.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/generic/Type.java b/src/main/java/org/apache/bcel/generic/Type.java index 551a1bb8..0e935349 100644 --- a/src/main/java/org/apache/bcel/generic/Type.java +++ b/src/main/java/org/apache/bcel/generic/Type.java @@ -223,7 +223,6 @@ public abstract class Type { * @param signature signature string such as Ljava/lang/String; * @return type object */ - // @since 6.0 no longer final public static Type getType(final String signature) throws StringIndexOutOfBoundsException { final byte type = Utility.typeOfSignature(signature); if (type <= Const.T_VOID) {