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 2e51e5e0 Javadoc: The @deprecated tag should be last.
2e51e5e0 is described below
commit 2e51e5e0b660d328802a5ace8aaa2f94f6b5aa80
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Dec 31 18:33:40 2025 -0500
Javadoc: The @deprecated tag should be last.
---
src/main/java/org/apache/bcel/generic/ReferenceType.java | 2 +-
1 file changed, 1 insertion(+), 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 7b28448d..05783ae7 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.
*/
@Deprecated
public ReferenceType firstCommonSuperclass(final ReferenceType t) throws
ClassNotFoundException {