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-lang.git

commit 3ed3ec85a36922fc2fe5fce6864354f33706d6ef
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Oct 14 10:22:06 2023 -0400

    Longer lines OK
---
 .../org/apache/commons/lang3/concurrent/AtomicSafeInitializer.java     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/lang3/concurrent/AtomicSafeInitializer.java 
b/src/main/java/org/apache/commons/lang3/concurrent/AtomicSafeInitializer.java
index 36fcf0e72..29195797c 100644
--- 
a/src/main/java/org/apache/commons/lang3/concurrent/AtomicSafeInitializer.java
+++ 
b/src/main/java/org/apache/commons/lang3/concurrent/AtomicSafeInitializer.java
@@ -56,8 +56,7 @@ public abstract class AtomicSafeInitializer<T> extends 
AbstractConcurrentInitial
     private static final Object NO_INIT = new Object();
 
     /** A guard which ensures that initialize() is called only once. */
-    private final AtomicReference<AtomicSafeInitializer<T>> factory =
-            new AtomicReference<>();
+    private final AtomicReference<AtomicSafeInitializer<T>> factory = new 
AtomicReference<>();
 
     /** Holds the reference to the managed object. */
     private final AtomicReference<T> reference = new AtomicReference<>((T) 
NO_INIT);

Reply via email to