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
commit 650568a50144f1c5a98376d13def85b09c62f00b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Oct 23 07:27:29 2023 -0400 Format tweak --- src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java | 3 +-- 1 file changed, 1 insertion(+), 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 a9802be..4f60dd8 100644 --- a/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java +++ b/src/main/java/org/apache/commons/crypto/utils/ReflectionUtils.java @@ -84,8 +84,7 @@ public final class ReflectionUtils { * @return the class object, or {@code null} if it could not be found or initialization failed. */ private static Class<?> getClassByNameOrNull(final String name) { - final Set<String> set = - INIT_ERROR_CLASSES.computeIfAbsent(CLASS_LOADER, k -> Collections.synchronizedSet(new HashSet<>())); + final Set<String> set = INIT_ERROR_CLASSES.computeIfAbsent(CLASS_LOADER, k -> Collections.synchronizedSet(new HashSet<>())); if (set.contains(name)) { return null;