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 f50364fe6322fe9bed29570ba56b0d93fd69f327 Author: Gary David Gregory (Code signing key) <ggreg...@apache.org> AuthorDate: Sat Jun 22 08:49:44 2024 -0400 Fix PMD UnnecessaryFullyQualifiedName --- src/main/java/org/apache/bcel/classfile/ConstantUtf8.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java index 7ac35fb5..01cc7d42 100644 --- a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java +++ b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java @@ -77,7 +77,7 @@ public final class ConstantUtf8 extends Constant { private static final int MAX_ENTRY_SIZE = Integer.getInteger(SYS_PROP_CACHE_MAX_ENTRY_SIZE, 200).intValue(); static boolean isEnabled() { - return Cache.MAX_ENTRIES > 0 && MAX_ENTRY_SIZE > 0; + return MAX_ENTRIES > 0 && MAX_ENTRY_SIZE > 0; } }