commit | 3b9644f6c10fad87267eaf5ec11fb4e58fbca66f | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@opennetworking.org> | Wed Mar 07 15:12:16 2018 -0800 |
committer | Ray Milkey <ray@opennetworking.org> | Wed Mar 07 23:40:42 2018 +0000 |
tree | 12d991083a6aedd1cb882a54791376d097ed3503 | |
parent | 7b84c07543672f1d9d640081ef47d647f9492efc [diff] |
Remove superfluous throwIfUnchecked() call Change-Id: Ie1cd4cdad94331e8f3bee07a7cb8d17b6db4261e
diff --git a/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/TransactionalMapParticipant.java b/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/TransactionalMapParticipant.java index 8837b49..3cb87a4 100644 --- a/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/TransactionalMapParticipant.java +++ b/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/TransactionalMapParticipant.java
@@ -18,7 +18,6 @@ import com.google.common.base.MoreObjects; import com.google.common.base.Objects; -import com.google.common.base.Throwables; import com.google.common.collect.Maps; import com.google.common.collect.Sets; import org.onosproject.store.primitives.MapUpdate; @@ -87,7 +86,6 @@ } catch (TimeoutException e) { throw new TransactionException.Timeout(); } catch (ExecutionException e) { - Throwables.throwIfUnchecked(e); throw new TransactionException(e.getCause()); } }