This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
commit 4a4b7577a1bc9f871f2c31ea8113656264127165 Author: Gary Gregory <[email protected]> AuthorDate: Fri Sep 4 18:32:08 2026 -0400 org.apache.bcel.verifier.VerifierFactory.DEFAULT_MAX_CACHE_SIZE doesn't need to be public. --- src/main/java/org/apache/bcel/verifier/VerifierFactory.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/org/apache/bcel/verifier/VerifierFactory.java b/src/main/java/org/apache/bcel/verifier/VerifierFactory.java index 8274feec..6c3491d6 100644 --- a/src/main/java/org/apache/bcel/verifier/VerifierFactory.java +++ b/src/main/java/org/apache/bcel/verifier/VerifierFactory.java @@ -48,10 +48,8 @@ public class VerifierFactory { /** * Default value used when {@link #MAX_CACHE_SIZE_PROPERTY} is not set. - * - * @since 6.13.0 */ - public static final int DEFAULT_MAX_CACHE_SIZE = 10_000; + private static final int DEFAULT_MAX_CACHE_SIZE = 10_000; /** * The map that holds the data about the already-constructed Verifier instances, in least-recently-used order,
