Index: applications/editors/josm/plugins/osmarender/.classpath
===================================================================
--- applications/editors/josm/plugins/osmarender/.classpath	(revision 15938)
+++ applications/editors/josm/plugins/osmarender/.classpath	(revision 16163)
@@ -3,5 +3,5 @@
 	<classpathentry kind="src" path="src"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/josm"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>
Index: applications/editors/josm/plugins/osmarender/build.xml
===================================================================
--- applications/editors/josm/plugins/osmarender/build.xml	(revision 15938)
+++ applications/editors/josm/plugins/osmarender/build.xml	(revision 16163)
@@ -26,5 +26,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/>
-                <attribute name="Plugin-Mainversion" value="1465"/>
+                <attribute name="Plugin-Mainversion" value="1638"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
===================================================================
--- applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java	(revision 15938)
+++ applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java	(revision 16163)
@@ -2,14 +2,12 @@
 
 import java.awt.event.ActionEvent;
+import java.io.BufferedReader;
+import java.io.File;
 import java.io.FileOutputStream;
+import java.io.FileReader;
 import java.io.IOException;
 import java.io.PrintWriter;
-import java.io.BufferedReader;
-import java.io.FileReader;
-import java.io.File;
-import java.util.Collection;
 import java.util.HashSet;
 
-import javax.swing.AbstractAction;
 import javax.swing.JLabel;
 import javax.swing.JMenuItem;
@@ -23,9 +21,9 @@
 import org.openstreetmap.josm.data.osm.DataSet;
 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.data.osm.OsmPrimitive;
 import org.openstreetmap.josm.data.osm.visitor.CollectBackReferencesVisitor;
+import org.openstreetmap.josm.gui.MainMenu;
 import org.openstreetmap.josm.gui.MapFrame;
-import org.openstreetmap.josm.gui.MainMenu;
 import org.openstreetmap.josm.gui.preferences.PreferenceDialog;
 import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
@@ -58,5 +56,5 @@
             for (Node n : Main.ds.nodes) {
                 if (n.deleted || n.incomplete) continue;
-                if (n.coor.isWithin(b)) {
+                if (n.getCoor().isWithin(b)) {
                     fromDataSet.nodes.add(n);
                     n.visit(backRefsV);
@@ -66,5 +64,5 @@
                 if (p instanceof Way) {
                     for (Node n : ((Way) p).nodes) {
-                        if (n.coor.isWithin(b))
+                        if (n.getCoor().isWithin(b))
                             backRefsV.data.add(n);
                     }
