mirror of https://github.com/apache/activemq.git
remove JDK 1.6 specific calls
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@955178 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
774a9daa4d
commit
37b7d9cfbd
|
@ -236,9 +236,9 @@ public class KahaDBTransactionStore implements TransactionStore {
|
||||||
try {
|
try {
|
||||||
result.get();
|
result.get();
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
theStore.brokerService.handleIOException(new IOException(e));
|
theStore.brokerService.handleIOException(new IOException(e.getMessage()));
|
||||||
} catch (ExecutionException e) {
|
} catch (ExecutionException e) {
|
||||||
theStore.brokerService.handleIOException(new IOException(e));
|
theStore.brokerService.handleIOException(new IOException(e.getMessage()));
|
||||||
}catch(CancellationException e) {
|
}catch(CancellationException e) {
|
||||||
}
|
}
|
||||||
if (!result.isCancelled()) {
|
if (!result.isCancelled()) {
|
||||||
|
|
Loading…
Reference in New Issue