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 a1de20027fd0d1b0bb79735cdf7a328c64192e7c
Author: Gary David Gregory (Code signing key) <[email protected]>
AuthorDate: Tue Jul 9 08:39:52 2024 -0400

    Remove redundant keywords
---
 src/main/java/org/apache/bcel/generic/ObjectType.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/generic/ObjectType.java 
b/src/main/java/org/apache/bcel/generic/ObjectType.java
index 95a4df3f..b1e93b3d 100644
--- a/src/main/java/org/apache/bcel/generic/ObjectType.java
+++ b/src/main/java/org/apache/bcel/generic/ObjectType.java
@@ -146,7 +146,7 @@ public class ObjectType extends ReferenceType {
      * @throws ClassNotFoundException if any of this class's superclasses 
can't be found
      */
     public boolean subclassOf(final ObjectType superclass) throws 
ClassNotFoundException {
-        if (this.referencesInterfaceExact() || 
superclass.referencesInterfaceExact()) {
+        if (referencesInterfaceExact() || 
superclass.referencesInterfaceExact()) {
             return false;
         }
         return Repository.instanceOf(this.className, superclass.className);

Reply via email to