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
commit ed8f580ea8d16a1f839b654db384f9506a694b57 Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:55 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/generic/ReferenceType.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/generic/ReferenceType.java b/src/main/java/org/apache/bcel/generic/ReferenceType.java index f78be865..d4a3f22b 100644 --- a/src/main/java/org/apache/bcel/generic/ReferenceType.java +++ b/src/main/java/org/apache/bcel/generic/ReferenceType.java @@ -28,12 +28,18 @@ import org.apache.bcel.classfile.JavaClass; public abstract class ReferenceType extends Type { /** - * Class is non-abstract but not instantiable from the outside + * Class is non-abstract but not instantiable from the outside. */ ReferenceType() { super(Const.T_OBJECT, "<null object>"); } + /** + * Constructs a ReferenceType. + * + * @param t the type. + * @param s the signature. + */ protected ReferenceType(final byte t, final String s) { super(t, s); }
