Index: /trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java	(revision 12532)
+++ /trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java	(revision 12533)
@@ -115,5 +115,5 @@
 
         final Collection<Way> sel = new LinkedHashSet<>(ds.getSelectedWays());
-        sel.removeIf(w -> w.isIncomplete());
+        sel.removeIf(Way::isIncomplete);
         if (sel.isEmpty()) {
             new Notification(
Index: /trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java	(revision 12532)
+++ /trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java	(revision 12533)
@@ -1038,6 +1038,6 @@
          * Determines if the object centroid lies at given lat/lon coordinates.
          * @param env the environment
-         * @param lat latitude
-         * @param lon longitude
+         * @param lat latitude, i.e., the north-south position in degrees
+         * @param lon longitude, i.e., the east-west position in degrees
          * @return {@code true} if the object centroid lies at given lat/lon coordinates
          * @since 12514
