Index: trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/coor/LatLon.java	(revision 10059)
+++ trunk/src/org/openstreetmap/josm/data/coor/LatLon.java	(revision 10060)
@@ -458,5 +458,5 @@
 
     /**
-     * Returns the value rounded to OSM precisions, i.e. to {@link LatLon#MAX_SERVER_PRECISION}.
+     * Returns the value rounded to OSM precisions, i.e. to {@link #MAX_SERVER_PRECISION}.
      * @param value lat/lon value
      *
@@ -468,19 +468,5 @@
 
     /**
-     * Returns the value rounded to OSM precision. This function is now the same as
-     * {@link #roundToOsmPrecision(double)}, since the rounding error has been fixed.
-     * @param value lat/lon value
-     *
-     * @return rounded value
-     * @deprecated Use {@link #roundToOsmPrecision(double)} instead
-     */
-    @Deprecated
-    public static double roundToOsmPrecisionStrict(double value) {
-        return roundToOsmPrecision(value);
-    }
-
-    /**
-     * Replies a clone of this lat LatLon, rounded to OSM precisions, i.e. to
-     * MAX_SERVER_PRECISION
+     * Replies a clone of this lat LatLon, rounded to OSM precisions, i.e. to {@link #MAX_SERVER_PRECISION}
      *
      * @return a clone of this lat LatLon
@@ -491,16 +477,4 @@
                 roundToOsmPrecision(lon())
                 );
-    }
-
-    /**
-     * Replies a clone of this lat LatLon, rounded to OSM precisions, i.e. to
-     * MAX_SERVER_PRECISION
-     *
-     * @return a clone of this lat LatLon
-     * @deprecated Use {@link #getRoundedToOsmPrecision()} instead
-     */
-    @Deprecated
-    public LatLon getRoundedToOsmPrecisionStrict() {
-        return getRoundedToOsmPrecision();
     }
 
Index: trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpsServer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpsServer.java	(revision 10059)
+++ trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpsServer.java	(revision 10060)
@@ -173,5 +173,5 @@
         // Critical: only allow TLS ("serverAuth" = 1.3.6.1.5.5.7.3.1)
         ext.set(ExtendedKeyUsageExtension.NAME, new ExtendedKeyUsageExtension(Boolean.TRUE,
-                new Vector<ObjectIdentifier>(Arrays.asList(new ObjectIdentifier("1.3.6.1.5.5.7.3.1")))));
+                new Vector<>(Arrays.asList(new ObjectIdentifier("1.3.6.1.5.5.7.3.1")))));
 
         if (san != null) {
