Skip to content

Commit

Permalink
Better internal class name
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Aug 18, 2023
1 parent 5afcba2 commit 78538a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand All @@ -51,7 +51,7 @@ private static abstract class NegativeCacheSentinel {
/**
* 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.
Expand Down

0 comments on commit 78538a1

Please sign in to comment.