- Timestamp:
- 2017-07-29T20:57:11+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java
r12527 r12533 115 115 116 116 final Collection<Way> sel = new LinkedHashSet<>(ds.getSelectedWays()); 117 sel.removeIf( w -> w.isIncomplete());117 sel.removeIf(Way::isIncomplete); 118 118 if (sel.isEmpty()) { 119 119 new Notification( -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java
r12514 r12533 1038 1038 * Determines if the object centroid lies at given lat/lon coordinates. 1039 1039 * @param env the environment 1040 * @param lat latitude 1041 * @param lon longitude 1040 * @param lat latitude, i.e., the north-south position in degrees 1041 * @param lon longitude, i.e., the east-west position in degrees 1042 1042 * @return {@code true} if the object centroid lies at given lat/lon coordinates 1043 1043 * @since 12514
Note:
See TracChangeset
for help on using the changeset viewer.