Index: /applications/editors/josm/plugins/sds/.classpath
===================================================================
--- /applications/editors/josm/plugins/sds/.classpath	(revision 29684)
+++ /applications/editors/josm/plugins/sds/.classpath	(revision 29684)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
Index: /applications/editors/josm/plugins/sds/.project
===================================================================
--- /applications/editors/josm/plugins/sds/.project	(revision 29684)
+++ /applications/editors/josm/plugins/sds/.project	(revision 29684)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>JOSM-sds</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/sds/build.xml
===================================================================
--- /applications/editors/josm/plugins/sds/build.xml	(revision 29683)
+++ /applications/editors/josm/plugins/sds/build.xml	(revision 29684)
@@ -1,31 +1,3 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!--
-** Maintaining versions
-** ====================
-** see README.template
-**
-** Usage
-** =====
-** To build it run
-**
-**    > ant
-** or
-**    > ant clean dist
-**
-** To install the generated plugin locally (in you default plugin directory) run
-**
-**    > ant install
-**
-** The generated plugin jar is not automatically available in JOSMs plugin configuration
-** dialog. You have to check it in first.
-**
-** Use the ant target 'publish' to check in the plugin and make it available to other
-** JOSM users:
-**    set the properties commit.message and plugin.main.version
-** and run
-**    > ant  publish
-**
-**
--->
 <project name="sds" default="dist" basedir=".">
 
@@ -33,5 +5,5 @@
     <property name="commit.message" value=""/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="4549"/>
+    <property name="plugin.main.version" value="6010"/>
 
     <!--
Index: /applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/ReadPostprocessor.java
===================================================================
--- /applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/ReadPostprocessor.java	(revision 29683)
+++ /applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/ReadPostprocessor.java	(revision 29684)
@@ -63,5 +63,5 @@
 		
 		for (OsmPrimitive p : ds.allPrimitives()) {
-			p.visit(adder);
+			p.accept(adder);
 		}
 			
Index: /applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/SeparateDataStorePlugin.java
===================================================================
--- /applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/SeparateDataStorePlugin.java	(revision 29683)
+++ /applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/SeparateDataStorePlugin.java	(revision 29684)
@@ -103,7 +103,7 @@
 	protected void learn(IPrimitive prim) {
 		if (prim instanceof OsmPrimitive) {
-			((OsmPrimitive)prim).save().visit(learnVisitor);
+			((OsmPrimitive)prim).save().accept(learnVisitor);
 		} else {
-			prim.visit(learnVisitor);
+			prim.accept(learnVisitor);
 		}
 	}
