Polishing

This commit is contained in:
Juergen Hoeller
2014-10-22 17:04:50 +02:00
parent 73ce3b514b
commit 2956049c30
2 changed files with 8 additions and 8 deletions

View File

@@ -84,8 +84,8 @@ public class AsyncResult<V> implements ListenableFuture<V> {
try {
successCallback.onSuccess(this.value);
}
catch (Throwable t) {
failureCallback.onFailure(t);
catch (Throwable ex) {
failureCallback.onFailure(ex);
}
}