Index: /applications/editors/josm/plugins/wms-turbo-challenge2/.classpath
===================================================================
--- /applications/editors/josm/plugins/wms-turbo-challenge2/.classpath	(revision 21477)
+++ /applications/editors/josm/plugins/wms-turbo-challenge2/.classpath	(revision 21477)
@@ -0,0 +1,8 @@
+<?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 combineaccessrules="false" kind="src" path="/wmsplugin"/>
+	<classpathentry kind="output" path="build"/>
+</classpath>
Index: /applications/editors/josm/plugins/wms-turbo-challenge2/.project
===================================================================
--- /applications/editors/josm/plugins/wms-turbo-challenge2/.project	(revision 21477)
+++ /applications/editors/josm/plugins/wms-turbo-challenge2/.project	(revision 21477)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>wms-turbo-challenge2</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/wms-turbo-challenge2/build.xml
===================================================================
--- /applications/editors/josm/plugins/wms-turbo-challenge2/build.xml	(revision 21476)
+++ /applications/editors/josm/plugins/wms-turbo-challenge2/build.xml	(revision 21477)
@@ -66,5 +66,5 @@
                 <attribute name="Plugin-Description" value="Drive a race car from point A to point B over aerial imagery, leave cacti behind."/>
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WMS_Racer"/>
-                <attribute name="Plugin-Mainversion" value="3096"/>
+                <attribute name="Plugin-Mainversion" value="3252"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: /applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/FakeMapView.java
===================================================================
--- /applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/FakeMapView.java	(revision 21476)
+++ /applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/FakeMapView.java	(revision 21477)
@@ -16,12 +16,12 @@
 package wmsturbochallenge;
 
-import org.openstreetmap.josm.gui.MapView;
+import java.awt.Graphics;
+import java.awt.Graphics2D;
+import java.awt.Point;
+import java.awt.image.BufferedImage;
+
 import org.openstreetmap.josm.data.ProjectionBounds;
 import org.openstreetmap.josm.data.coor.EastNorth;
-
-import java.awt.Point;
-import java.awt.Graphics;
-import java.awt.Graphics2D;
-import java.awt.image.BufferedImage;
+import org.openstreetmap.josm.gui.MapView;
 
 class fake_map_view extends MapView {
@@ -37,4 +37,5 @@
 
 	public fake_map_view(MapView parent, double scale) {
+		super(null); //TODO MapView constructor contains registering listeners and other code, that probably shouldn't be called in fake map view
 		this.parent = parent;
 		this.scale = scale;
