Index: applications/editors/josm/plugins/turnrestrictions/.classpath
===================================================================
--- applications/editors/josm/plugins/turnrestrictions/.classpath	(revision 22477)
+++ applications/editors/josm/plugins/turnrestrictions/.classpath	(revision 22477)
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="test"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
+	<classpathentry kind="output" path="build"/>
+</classpath>
Index: applications/editors/josm/plugins/turnrestrictions/.project
===================================================================
--- applications/editors/josm/plugins/turnrestrictions/.project	(revision 22477)
+++ applications/editors/josm/plugins/turnrestrictions/.project	(revision 22477)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>turnrestrictions</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: applications/editors/josm/plugins/turnrestrictions/build.xml
===================================================================
--- applications/editors/josm/plugins/turnrestrictions/build.xml	(revision 22473)
+++ applications/editors/josm/plugins/turnrestrictions/build.xml	(revision 22477)
@@ -33,5 +33,5 @@
 	<property name="commit.message" value="Update to josm core" />
 	<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-	<property name="plugin.main.version" value="3210" />
+	<property name="plugin.main.version" value="3392" />
 
 	<!--
@@ -157,8 +157,8 @@
 
 	<!--
-	************************** Publishing the plugin *********************************** 
+	************************** Publishing the plugin ***********************************
 	-->
 	<!--
-		** extracts the JOSM release for the JOSM version in ../core and saves it in the 
+		** extracts the JOSM release for the JOSM version in ../core and saves it in the
 		** property ${coreversion.info.entry.revision}
 		**
@@ -209,15 +209,15 @@
 
 	<!--
-		** commits the plugin.jar 
+		** commits the plugin.jar
 		-->
 	<target name="commit-dist">
 		<echo>
 	***** Properties of published ${plugin.jar} *****
-	Commit message    : '${commit.message}'					
+	Commit message    : '${commit.message}'
 	Plugin-Mainversion: ${plugin.main.version}
 	JOSM build version: ${coreversion.info.entry.revision}
 	Plugin-Version    : ${version.entry.commit.revision}
-	***** / Properties of published ${plugin.jar} *****					
-						
+	***** / Properties of published ${plugin.jar} *****
+
 	Now commiting ${plugin.jar} ...
 	</echo>
Index: applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/qa/TurnRestrictionLegSplitRequiredError.java
===================================================================
--- applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/qa/TurnRestrictionLegSplitRequiredError.java	(revision 22473)
+++ applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/qa/TurnRestrictionLegSplitRequiredError.java	(revision 22477)
@@ -12,4 +12,5 @@
 import org.openstreetmap.josm.actions.SplitWayAction.SplitWayResult;
 import org.openstreetmap.josm.data.osm.Node;
+import org.openstreetmap.josm.data.osm.OsmPrimitive;
 import org.openstreetmap.josm.data.osm.Way;
 import org.openstreetmap.josm.gui.DefaultNameFormatter;
@@ -28,7 +29,7 @@
 
 	/**
-	 * Create the issue 
-	 * 
-	 * @param parent the parent model 
+	 * Create the issue
+	 *
+	 * @param parent the parent model
 	 * @param role the role of the way which should be splitted
 	 * @param from the way with role 'from'
@@ -46,5 +47,5 @@
 
 	@Override
-	public String getText() {		
+	public String getText() {
 		String msg = null;
 		switch(role){
@@ -55,5 +56,5 @@
 				role.getOsmRole(),
 				interesect.getDisplayName(DefaultNameFormatter.getInstance()),
-				to.getDisplayName(DefaultNameFormatter.getInstance())				
+				to.getDisplayName(DefaultNameFormatter.getInstance())
 			);
 			break;
@@ -70,5 +71,5 @@
 		return msg;
 	}
-	
+
 	class SplitAction extends AbstractAction {
 		public SplitAction() {
@@ -83,12 +84,13 @@
 			}
 			SplitWayResult result = SplitWayAction.split(
-					parent.getEditorModel().getLayer(), 
-					way, 
-					Collections.singletonList(interesect)
+					parent.getEditorModel().getLayer(),
+					way,
+					Collections.singletonList(interesect),
+					Collections.<OsmPrimitive>emptyList()
 			);
 			if (result != null){
 				Main.main.undoRedo.add(result.getCommand());
 			}
-		}		
+		}
 	}
 }
