Changeset 17042 in josm for trunk


Ignore:
Timestamp:
2020-09-19T14:07:13+02:00 (4 years ago)
Author:
Klumbumbus
Message:

checkstyle

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java

    r17040 r17042  
    224224
    225225    private void removeAllButtons() {
    226         MapFrame map= MainApplication.getMap();
     226        MapFrame map = MainApplication.getMap();
    227227        if (map != null) {
    228228            buttons.values().forEach(map.mapView::remove);
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Selector.java

    r17037 r17042  
    374374                            && left.matches(new Environment(p).withParent(e.osm)) && isArea(p)
    375375                            && (toIgnore == null || !toIgnore.contains(p))) {
    376                         if (e.osm instanceof Way && ((Way)e.osm).referrers(Relation.class).anyMatch(ref -> ref == p))
     376                        if (e.osm instanceof Way && ((Way) e.osm).referrers(Relation.class).anyMatch(ref -> ref == p))
    377377                            continue;
    378378                        visitArea(p);
Note: See TracChangeset for help on using the changeset viewer.