Ignore:
Timestamp:
2015-06-21T02:25:56+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: blocks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/WMSLayer.java

    r8510 r8513  
    490490    public void visitBoundingBox(BoundingXYVisitor v) {
    491491        for (int x = 0; x < dax; ++x) {
    492             for (int y = 0; y < day; ++y)
     492            for (int y = 0; y < day; ++y) {
    493493                if (images[x][y].getImage() != null) {
    494494                    v.visit(images[x][y].getMin());
    495495                    v.visit(images[x][y].getMax());
    496496                }
     497            }
    497498        }
    498499    }
Note: See TracChangeset for help on using the changeset viewer.