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 950c9d9f Format tweak 950c9d9f is described below commit 950c9d9f628706381ff56ffea789fc1c17d21ba2 Author: Gary David Gregory (Code signing key) <ggreg...@apache.org> AuthorDate: Sun Oct 2 17:56:47 2022 -0400 Format tweak --- src/main/java/org/apache/bcel/classfile/AnnotationEntry.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java b/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java index 432e523c..197d5516 100644 --- a/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java +++ b/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java @@ -51,7 +51,6 @@ public class AnnotationEntry implements Node { * @throws IOException if an I/O error occurs. */ public static AnnotationEntry read(final DataInput input, final ConstantPool constantPool, final boolean isRuntimeVisible) throws IOException { - final AnnotationEntry annotationEntry = new AnnotationEntry(input.readUnsignedShort(), constantPool, isRuntimeVisible); final int num_element_value_pairs = input.readUnsignedShort(); annotationEntry.elementValuePairs = new ArrayList<>();