Index: trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/coor/LatLon.java	(revision 19318)
+++ trunk/src/org/openstreetmap/josm/data/coor/LatLon.java	(revision 19319)
@@ -178,19 +178,7 @@
      * @deprecated since 18464 (use {@link ILatLon#equalsEpsilon(ILatLon)} instead)
      */
-    @Deprecated
+    @Deprecated(since = "18464", forRemoval = true)
     public boolean equalsEpsilon(LatLon other) {
         return ILatLon.super.equalsEpsilon(other);
-    }
-
-    /**
-     * Determines if this lat/lon is outside of the world
-     * @return <code>true</code>, if the coordinate is outside the world, compared by using lat/lon.
-     * @deprecated use {@link Node#isOutSideWorld} instead, see also #13538.
-     */
-    @Deprecated
-    public boolean isOutSideWorld() {
-        Bounds b = ProjectionRegistry.getProjection().getWorldBoundsLatLon();
-        return lat() < b.getMinLat() || lat() > b.getMaxLat() ||
-                lon() < b.getMinLon() || lon() > b.getMaxLon();
     }
 
@@ -221,5 +209,5 @@
      * @deprecated since 18494 (use {@link ILatLon#greatCircleDistance(ILatLon)} instead)
      */
-    @Deprecated
+    @Deprecated(since = "18494", forRemoval = true)
     public double greatCircleDistance(LatLon other) {
         return ILatLon.super.greatCircleDistance(other);
@@ -242,5 +230,5 @@
      * @deprecated since 18494 (use {@link ILatLon#bearing(ILatLon)} instead)
      */
-    @Deprecated
+    @Deprecated(since = "18494", forRemoval = true)
     public double bearing(LatLon other) {
         return ILatLon.super.bearing(other);
