Index: applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/SplitObjectAction.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/SplitObjectAction.java	(revision 36001)
+++ applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/SplitObjectAction.java	(revision 36130)
@@ -47,4 +47,5 @@
 import org.openstreetmap.josm.spi.preferences.Config;
 import org.openstreetmap.josm.tools.CheckParameterUtil;
+import org.openstreetmap.josm.tools.Logging;
 import org.openstreetmap.josm.tools.Pair;
 import org.openstreetmap.josm.tools.Shortcut;
@@ -52,8 +53,8 @@
 /**
  * Splits a closed way (polygon) into two closed ways or a multipolygon into two separate multipolygons.
- *
+ * <p>
  * The closed ways are just split at the selected nodes (which must be exactly two).
  * The nodes remain in their original order.
- *
+ * <p>
  * This is similar to SplitWayAction with the addition that the split ways are closed
  * immediately.
@@ -74,5 +75,5 @@
     /**
      * Called when the action is executed.
-     *
+     * <p>
      * This method performs an expensive check whether the selection clearly defines one
      * of the split actions outlined above, and if yes, calls the splitObject method.
@@ -259,5 +260,5 @@
             if (splitWay != null) {
                 result.executeCommand();
-                DeleteCommand delCmd = new DeleteCommand(splitWay);
+                Command delCmd = DeleteCommand.delete(Collections.singletonList(splitWay));
                 delCmd.executeCommand();
                 UndoRedoHandler.getInstance().add(new SplitObjectCommand(Arrays.asList(result, delCmd)), false);
@@ -337,4 +338,5 @@
 
         } catch (IllegalArgumentException e) {
+            Logging.trace(e);
             // Changes were already undone in splitMultipolygonAtWay
             showWarningNotification(e.getMessage());
