Index: trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java	(revision 10726)
+++ trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java	(revision 10728)
@@ -40,7 +40,7 @@
  * listeners will be gathered and notified, once download job will be finished
  *
+ * @author Wiktor Niesiobędzki
  * @param <K> cache entry key type
  * @param <V> cache value type
- * @author Wiktor Niesiobędzki
  * @since 8168
  */
Index: trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java	(revision 10726)
+++ trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java	(revision 10728)
@@ -221,4 +221,5 @@
     /**
      * A predicate filtering primitives that are not deleted and not incomplete.
+     * @deprecated use lambda instead
      */
     @Deprecated
@@ -228,4 +229,5 @@
     /**
      * A predicate filtering primitives that are not deleted and not incomplete and that are not a relation.
+     * @deprecated use lambda instead
      */
     @Deprecated
@@ -272,4 +274,5 @@
      *
      * @see #FLAG_HAS_DIRECTIONS
+     * @deprecated use {@code directionKeys::match}
      */
     @Deprecated
Index: trunk/src/org/openstreetmap/josm/data/osm/Relation.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/Relation.java	(revision 10726)
+++ trunk/src/org/openstreetmap/josm/data/osm/Relation.java	(revision 10728)
@@ -10,5 +10,4 @@
 import java.util.Map;
 import java.util.Set;
-import java.util.function.Function;
 
 import org.openstreetmap.josm.Main;
Index: trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 10726)
+++ trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java	(revision 10728)
@@ -584,5 +584,6 @@
                 }
                 if (fix != null) {
-                    return new FixableTestError(null, getSeverity(), description1, description2, matchingSelector.toString(), 3000, primitives, fix);
+                    return new FixableTestError(null, getSeverity(), description1, description2, matchingSelector.toString(), 3000,
+                            primitives, fix);
                 } else {
                     return new TestError(null, getSeverity(), description1, description2, matchingSelector.toString(), 3000, primitives);
Index: trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/ImageryHandler.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/ImageryHandler.java	(revision 10726)
+++ trunk/src/org/openstreetmap/josm/io/remotecontrol/handler/ImageryHandler.java	(revision 10728)
@@ -5,5 +5,4 @@
 
 import java.util.Arrays;
-import java.util.function.Function;
 
 import org.openstreetmap.josm.Main;
