Better local name

This commit is contained in:
Gary Gregory 2023-10-17 13:46:52 -04:00
parent 5016994f4a
commit c5d8c4f19a
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}