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-crypto.git
The following commit(s) were added to refs/heads/master by this push: new 78538a1 Better internal class name 78538a1 is described below commit 78538a106d54bcfb23cd5210204c89ffe7aac627 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Aug 18 10:57:29 2023 -0400 Better internal class name --- src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java b/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java index c891a87..f5fa8ca 100644 --- a/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java +++ b/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java @@ -35,7 +35,7 @@ public final class ReflectionUtils { * A unique class which is used as a sentinel value in the caching for * getClassByName. {@link #getClassByNameOrNull(String)}. */ - private static abstract class NegativeCacheSentinel { + private static abstract class AbstractNegativeCacheSentinel { // noop } @@ -51,7 +51,7 @@ public final class ReflectionUtils { /** * Sentinel value to store negative cache results in {@link #CACHE_CLASSES}. */ - private static final Class<?> NEGATIVE_CACHE_SENTINEL = NegativeCacheSentinel.class; + private static final Class<?> NEGATIVE_CACHE_SENTINEL = AbstractNegativeCacheSentinel.class; /** * Loads a class by name.