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


The following commit(s) were added to refs/heads/master by this push:
     new c5d8c4f19 Better local name
c5d8c4f19 is described below

commit c5d8c4f19ac4fedb5501a203ab019e065ad9ad4e
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 17 13:46:52 2023 -0400

    Better local name
---
 .../java/org/apache/commons/lang3/concurrent/ConcurrentUtils.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/lang3/concurrent/ConcurrentUtils.java 
b/src/main/java/org/apache/commons/lang3/concurrent/ConcurrentUtils.java
index cc9942844..f2eeae32d 100644
--- a/src/main/java/org/apache/commons/lang3/concurrent/ConcurrentUtils.java
+++ b/src/main/java/org/apache/commons/lang3/concurrent/ConcurrentUtils.java
@@ -123,10 +123,10 @@ public class ConcurrentUtils {
      * wrapped in the thrown runtime exception
      */
     public static void handleCauseUnchecked(final ExecutionException ex) {
-        final ConcurrentRuntimeException crex = extractCauseUnchecked(ex);
+        final ConcurrentRuntimeException cause = extractCauseUnchecked(ex);
 
-        if (crex != null) {
-            throw crex;
+        if (cause != null) {
+            throw cause;
         }
     }
 

Reply via email to