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 5016994f4 Better local name 5016994f4 is described below commit 5016994f4a92a239e2e80948e10e835c8720bfe7 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 17 13:46:32 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 42b6343da..cc9942844 100644 --- a/src/main/java/org/apache/commons/lang3/concurrent/ConcurrentUtils.java +++ b/src/main/java/org/apache/commons/lang3/concurrent/ConcurrentUtils.java @@ -102,10 +102,10 @@ public class ConcurrentUtils { */ public static void handleCause(final ExecutionException ex) throws ConcurrentException { - final ConcurrentException cex = extractCause(ex); + final ConcurrentException cause = extractCause(ex); - if (cex != null) { - throw cex; + if (cause != null) { + throw cause; } }