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 3721d809 Javadoc 3721d809 is described below commit 3721d8091fce47ddfe6c9a89a46f0098f5c3e78c Author: Gary David Gregory (Code signing key) <ggreg...@apache.org> AuthorDate: Wed Aug 21 09:05:55 2024 -0400 Javadoc --- src/examples/TransitiveHull.java | 2 +- src/main/java/org/apache/bcel/classfile/ConstantObject.java | 2 +- src/main/java/org/apache/bcel/classfile/Field.java | 2 +- src/main/java/org/apache/bcel/generic/FieldGen.java | 2 +- src/main/java/org/apache/bcel/generic/TypedInstruction.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/examples/TransitiveHull.java b/src/examples/TransitiveHull.java index 9a34c1db..00ba5282 100644 --- a/src/examples/TransitiveHull.java +++ b/src/examples/TransitiveHull.java @@ -42,7 +42,7 @@ import org.apache.commons.lang3.ArrayUtils; * Compute the transitive hull of classes used by a given class. This is done by checking all ConstantClass entries and * all method and field signatures. * <p> - * This may be useful in order to put all class files of an application into a single JAR file, e.g.. + * This may be useful in order to put all class files of an application into a single JAR file. * </p> * <p> * It fails however in the presence of reflexive code aka introspection. diff --git a/src/main/java/org/apache/bcel/classfile/ConstantObject.java b/src/main/java/org/apache/bcel/classfile/ConstantObject.java index 64ae7cd9..6b359b2f 100644 --- a/src/main/java/org/apache/bcel/classfile/ConstantObject.java +++ b/src/main/java/org/apache/bcel/classfile/ConstantObject.java @@ -17,7 +17,7 @@ package org.apache.bcel.classfile; /** - * This interface denotes those constants that have a "natural" value, such as ConstantLong, ConstantString, etc.. + * This interface denotes those constants that have a "natural" value, such as ConstantLong, ConstantString, and so on. * * @see Constant */ diff --git a/src/main/java/org/apache/bcel/classfile/Field.java b/src/main/java/org/apache/bcel/classfile/Field.java index 0fd1582c..87925e19 100644 --- a/src/main/java/org/apache/bcel/classfile/Field.java +++ b/src/main/java/org/apache/bcel/classfile/Field.java @@ -156,7 +156,7 @@ public final class Field extends FieldOrMethod { } /** - * Return string representation close to declaration format, 'public static final short MAX = 100', e.g.. + * Return string representation close to declaration format, for example: 'public static final short MAX = 100'. * * @return String representation of field, including the signature. */ diff --git a/src/main/java/org/apache/bcel/generic/FieldGen.java b/src/main/java/org/apache/bcel/generic/FieldGen.java index d964d15b..9216e234 100644 --- a/src/main/java/org/apache/bcel/generic/FieldGen.java +++ b/src/main/java/org/apache/bcel/generic/FieldGen.java @@ -301,7 +301,7 @@ public class FieldGen extends FieldGenOrMethodGen { } /** - * Return string representation close to declaration format, 'public static final short MAX = 100', e.g.. + * Return string representation close to declaration format, for example: 'public static final short MAX = 100'. * * @return String representation of field */ diff --git a/src/main/java/org/apache/bcel/generic/TypedInstruction.java b/src/main/java/org/apache/bcel/generic/TypedInstruction.java index 1c06851c..5388664e 100644 --- a/src/main/java/org/apache/bcel/generic/TypedInstruction.java +++ b/src/main/java/org/apache/bcel/generic/TypedInstruction.java @@ -17,7 +17,7 @@ package org.apache.bcel.generic; /** - * Gets the type associated with an instruction, int for ILOAD, or the type of the field of a PUTFIELD instruction, e.g.. + * Gets the type associated with an instruction, int for ILOAD, or the type of the field of a PUTFIELD instruction. */ public interface TypedInstruction {