This is an automated email from the ASF dual-hosted git repository.
garydgregory 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 9274fb76 Javadoc
9274fb76 is described below
commit 9274fb76f006d28bfd11f1b3e519e4f8b8af96e2
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 30 13:41:24 2026 +0000
Javadoc
---
src/main/java/org/apache/bcel/classfile/ConstantPool.java | 6 +++---
src/main/java/org/apache/bcel/classfile/FieldOrMethod.java | 2 +-
src/main/java/org/apache/bcel/classfile/JavaClass.java | 2 +-
src/main/java/org/apache/bcel/classfile/RecordComponentInfo.java | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantPool.java
b/src/main/java/org/apache/bcel/classfile/ConstantPool.java
index 62644269..9f2a8662 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantPool.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantPool.java
@@ -253,7 +253,7 @@ public class ConstantPool implements Cloneable, Node,
Iterable<Constant> {
/**
* Gets constant from constant pool.
*
- * @param <T> the type of the constant.
+ * @param <T> The type of the constant.
* @param index Index in constant pool.
* @return Constant value.
* @see Constant
@@ -267,7 +267,7 @@ public class ConstantPool implements Cloneable, Node,
Iterable<Constant> {
/**
* Gets constant from constant pool and check whether it has the expected
type.
*
- * @param <T> the type of the constant.
+ * @param <T> The type of the constant.
* @param index Index in constant pool.
* @param tag Tag of expected constant, that is, its type.
* @return Constant value.
@@ -282,7 +282,7 @@ public class ConstantPool implements Cloneable, Node,
Iterable<Constant> {
/**
* Gets constant from constant pool and check whether it has the expected
type.
*
- * @param <T> the type of the constant.
+ * @param <T> The type of the constant.
* @param index Index in constant pool.
* @param tag Tag of expected constant, that is, its type.
* @param castTo the class to cast to.
diff --git a/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java
b/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java
index b850fa42..7a42f783 100644
--- a/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java
+++ b/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java
@@ -178,7 +178,7 @@ public abstract class FieldOrMethod extends AccessFlags
implements Cloneable, No
/**
* Gets attribute for given tag.
*
- * @param <T> the attribute type.
+ * @param <T> The attribute type.
* @param tag the attribute tag.
* @return Attribute for given tag, null if not found.
* Refer to {@link org.apache.bcel.Const#ATTR_UNKNOWN} constants named
ATTR_* for possible values.
diff --git a/src/main/java/org/apache/bcel/classfile/JavaClass.java
b/src/main/java/org/apache/bcel/classfile/JavaClass.java
index f930c7a5..c10ef2e3 100644
--- a/src/main/java/org/apache/bcel/classfile/JavaClass.java
+++ b/src/main/java/org/apache/bcel/classfile/JavaClass.java
@@ -517,7 +517,7 @@ public class JavaClass extends AccessFlags implements
Cloneable, Node, Comparabl
/**
* Gets attribute for given tag.
*
- * @param <T> the attribute type.
+ * @param <T> The attribute type.
* @param tag the attribute tag.
* @return Attribute for given tag, null if not found.
* Refer to {@link org.apache.bcel.Const#ATTR_UNKNOWN} constants named
ATTR_* for possible values.
diff --git a/src/main/java/org/apache/bcel/classfile/RecordComponentInfo.java
b/src/main/java/org/apache/bcel/classfile/RecordComponentInfo.java
index 4a1c349a..9d3f6562 100644
--- a/src/main/java/org/apache/bcel/classfile/RecordComponentInfo.java
+++ b/src/main/java/org/apache/bcel/classfile/RecordComponentInfo.java
@@ -80,7 +80,7 @@ public class RecordComponentInfo implements Node {
/**
* Gets the attribute for the given tag if present, or null if absent.
*
- * @param <T> the attribute type.
+ * @param <T> The attribute type.
* @param tag the attribute tag.
* @return Attribute for given tag, null if not found.
* Refer to {@link org.apache.bcel.Const#ATTR_UNKNOWN} constants named
ATTR_* for possible values.