Bump MRI upstreams
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / transact / TransactCommandAggregator.java
index 1bf0dfe2493bc48cf13aa1528c6de97b07287daf..2a232f20f3c947499e631e8d7d5a9e05369ab32b 100644 (file)
@@ -70,13 +70,8 @@ public class TransactCommandAggregator implements TransactCommand {
 
     @Override
     public void execute(TransactionBuilder transaction) {
-        for (TransactCommand command:commands) {
-            try {
-                command.execute(transaction);
-            } catch (NullPointerException e) {
-                LOG.error("Execution of command {} failed with the following exception."
-                        + " Continuing the execution of remaining commands", command, e);
-            }
+        for (TransactCommand command : commands) {
+            command.execute(transaction);
         }
     }