Ignore:
Timestamp:
2016-07-04T14:18:17+02:00 (9 years ago)
Author:
donvip
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/GrabThread.java

    r32060 r32556  
    1 // License: GPL. v2 and later. Copyright 2008-2009 by Pieren <pieren3@gmail.com> and others
     1// License: GPL. For details, see LICENSE file.
    22package cadastre_fr;
    33
     
    3535    /**
    3636     * Call directly grabber for raster images or prepare thread for vector images
    37      * @param moreImages
    3837     */
    3938    public void addImages(ArrayList<EastNorthBound> moreImages) {
     
    4140        imagesToGrab.addAll(moreImages);
    4241        lockImagesToGrag.unlock();
    43         synchronized(this) {
     42        synchronized (this) {
    4443            this.notify();
    4544        }
     
    139138                notifyWaiter();
    140139            }
    141             waitNotification();        }
     140            waitNotification();
     141        }
    142142    }
    143143
     
    152152            getCacheControl().deleteCacheFile();
    153153            wmsLayer.imagesLock.lock();
    154             for (GeorefImage image : wmsLayer.getImages())
     154            for (GeorefImage image : wmsLayer.getImages()) {
    155155                getCacheControl().saveCache(image);
     156            }
    156157            wmsLayer.imagesLock.unlock();
    157158        }
     
    199200        croppedPoint[3] = mv.getPoint(new EastNorth(img.max.east(), img.min.north()));
    200201        croppedPoint[4] = croppedPoint[0];
    201         for (int i=0; i<4; i++) {
     202        for (int i = 0; i < 4; i++) {
    202203            g.setColor(color);
    203204            g.drawLine(croppedPoint[i].x, croppedPoint[i].y, croppedPoint[i+1].x, croppedPoint[i+1].y);
Note: See TracChangeset for help on using the changeset viewer.