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 931a2cf2 Javadoc
931a2cf2 is described below
commit 931a2cf28d9a2519edf9f3ed6abdeaf765fa3af3
Author: Gary D. Gregory <[email protected]>
AuthorDate: Tue Oct 7 08:47:38 2025 -0400
Javadoc
---
src/main/java/org/apache/bcel/generic/ReferenceType.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/bcel/generic/ReferenceType.java
b/src/main/java/org/apache/bcel/generic/ReferenceType.java
index 74fd4571..7b28448d 100644
--- a/src/main/java/org/apache/bcel/generic/ReferenceType.java
+++ b/src/main/java/org/apache/bcel/generic/ReferenceType.java
@@ -46,8 +46,8 @@ public abstract class ReferenceType extends Type {
* interface, then {@link #OBJECT} is returned. If not all of the two
classes' superclasses cannot be found, "null" is
* returned. See the JVM specification edition 2, "�4.9.2 The Bytecode
Verifier".
*
- * @deprecated use getFirstCommonSuperclass(ReferenceType t) which has
slightly changed semantics.
- * @throws ClassNotFoundException on failure to find superclasses of this
type, or the type passed as a parameter
+ * @deprecated Use getFirstCommonSuperclass(ReferenceType t) which has
slightly changed semantics.
+ * @throws ClassNotFoundException on failure to find superclasses of this
type, or the type passed as a parameter.
*/
@Deprecated
public ReferenceType firstCommonSuperclass(final ReferenceType t) throws
ClassNotFoundException {