Index: /trunk/src/org/openstreetmap/josm/gui/layer/AbstractTileSourceLayer.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/layer/AbstractTileSourceLayer.java	(revision 13966)
+++ /trunk/src/org/openstreetmap/josm/gui/layer/AbstractTileSourceLayer.java	(revision 13967)
@@ -314,34 +314,4 @@
     }
 
-    /**
-     * {@inheritDoc}
-     * @deprecated Use {@link TileSourceDisplaySettings#getDx()}
-     */
-    @Override
-    @Deprecated
-    public double getDx() {
-        return getDisplaySettings().getDx();
-    }
-
-    /**
-     * {@inheritDoc}
-     * @deprecated Use {@link TileSourceDisplaySettings#getDy()}
-     */
-    @Override
-    @Deprecated
-    public double getDy() {
-        return getDisplaySettings().getDy();
-    }
-
-    /**
-     * {@inheritDoc}
-     * @deprecated Use {@link TileSourceDisplaySettings}
-     */
-    @Override
-    @Deprecated
-    public void setOffset(OffsetBookmark offset) {
-        getDisplaySettings().setOffsetBookmark(offset);
-    }
-
     @Override
     public Object getInfoComponent() {
Index: /trunk/src/org/openstreetmap/josm/gui/layer/ImageryLayer.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/layer/ImageryLayer.java	(revision 13966)
+++ /trunk/src/org/openstreetmap/josm/gui/layer/ImageryLayer.java	(revision 13967)
@@ -32,5 +32,4 @@
 import org.openstreetmap.josm.data.ProjectionBounds;
 import org.openstreetmap.josm.data.imagery.ImageryInfo;
-import org.openstreetmap.josm.data.imagery.OffsetBookmark;
 import org.openstreetmap.josm.data.preferences.IntegerProperty;
 import org.openstreetmap.josm.gui.MainApplication;
@@ -38,5 +37,4 @@
 import org.openstreetmap.josm.gui.MenuScroller;
 import org.openstreetmap.josm.gui.layer.imagery.ImageryFilterSettings;
-import org.openstreetmap.josm.gui.layer.imagery.TileSourceDisplaySettings;
 import org.openstreetmap.josm.gui.widgets.UrlLabel;
 import org.openstreetmap.josm.tools.GBC;
@@ -91,39 +89,4 @@
         ProjectionBounds bounds = mapView.getProjectionBounds();
         return mapView.getWidth() / (bounds.maxEast - bounds.minEast);
-    }
-
-    /**
-     * Gets the x displacement of this layer.
-     * To be removed end of 2016
-     * @return The x displacement.
-     * @deprecated Use {@link TileSourceDisplaySettings#getDx()}
-     */
-    @Deprecated
-    public double getDx() {
-        // moved to AbstractTileSourceLayer/TileSourceDisplaySettings. Remains until all actions migrate.
-        return 0;
-    }
-
-    /**
-     * Gets the y displacement of this layer.
-     * To be removed end of 2016
-     * @return The y displacement.
-     * @deprecated Use {@link TileSourceDisplaySettings#getDy()}
-     */
-    @Deprecated
-    public double getDy() {
-        // moved to AbstractTileSourceLayer/TileSourceDisplaySettings. Remains until all actions migrate.
-        return 0;
-    }
-
-    /**
-     * Sets the displacement offset of this layer. The layer is automatically invalidated.
-     * To be removed end of 2016
-     * @param offset the offset bookmark
-     * @deprecated Use {@link TileSourceDisplaySettings}
-     */
-    @Deprecated
-    public void setOffset(OffsetBookmark offset) {
-        // moved to AbstractTileSourceLayer/TileSourceDisplaySettings. Remains until all actions migrate.
     }
 
