Better local name
This commit is contained in:
parent
98b119bf79
commit
5016994f4a
|
@ -102,10 +102,10 @@ public class ConcurrentUtils {
|
||||||
*/
|
*/
|
||||||
public static void handleCause(final ExecutionException ex)
|
public static void handleCause(final ExecutionException ex)
|
||||||
throws ConcurrentException {
|
throws ConcurrentException {
|
||||||
final ConcurrentException cex = extractCause(ex);
|
final ConcurrentException cause = extractCause(ex);
|
||||||
|
|
||||||
if (cex != null) {
|
if (cause != null) {
|
||||||
throw cex;
|
throw cause;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue