Index: /applications/editors/josm/plugins/wmsplugin/.classpath
===================================================================
--- /applications/editors/josm/plugins/wmsplugin/.classpath	(revision 24220)
+++ /applications/editors/josm/plugins/wmsplugin/.classpath	(revision 24221)
@@ -3,7 +3,7 @@
 	<classpathentry kind="src" path="src"/>
 	<classpathentry including="images/" kind="src" path=""/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK 6"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/remotecontrol"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="output" path="build"/>
 </classpath>
Index: /applications/editors/josm/plugins/wmsplugin/build.xml
===================================================================
--- /applications/editors/josm/plugins/wmsplugin/build.xml	(revision 24220)
+++ /applications/editors/josm/plugins/wmsplugin/build.xml	(revision 24221)
@@ -28,5 +28,5 @@
 
 
-	<property name="commit.message" value="fixed josm bug 4671 - wms url for sicily has changed" />
+	<property name="commit.message" value="Add getDx() and getDy() methods to WMSLayer to enable other plugins to determine WMS layer shift, see #5565" />
 	<property name="plugin.main.version" value="3530" />
 
Index: /applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSLayer.java
===================================================================
--- /applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSLayer.java	(revision 24220)
+++ /applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSLayer.java	(revision 24221)
@@ -265,4 +265,12 @@
     }
 
+    public double getDx() {
+        return dx;
+    }
+
+    public double getDy() {
+        return dy;
+    }
+
     public int getImageXIndex(double coord) {
         return (int)Math.floor( ((coord - dx) * info.pixelPerDegree) / imageSize);
