Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/WireframeMapRenderer.java

    r8444 r8510  
    170170        List<Way> untaggedWays = new ArrayList<>();
    171171
    172         for (final Way way : data.searchWays(bbox)){
     172        for (final Way way : data.searchWays(bbox)) {
    173173            if (way.isDrawable() && !ds.isSelected(way) && !way.isDisabledAndHidden()) {
    174174                if (way.isHighlighted()) {
     
    186186        List<Way> specialWays = new ArrayList<>(untaggedWays);
    187187        specialWays.addAll(highlightedWays);
    188         for (final Way way : specialWays){
     188        for (final Way way : specialWays) {
    189189            way.accept(this);
    190190        }
Note: See TracChangeset for help on using the changeset viewer.