Changeset 14428 in josm


Ignore:
Timestamp:
2018-11-16T23:09:55+01:00 (5 years ago)
Author:
wiktorn
Message:

Checkstyle & PMD

File:
1 edited

Legend:

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

    r14427 r14428  
    17771777        /**
    17781778         * @param progressMonitor that will be notified about progess of the task
    1779          * @param bufferY
    1780          * @param bufferX
    1781          * @param points
     1779         * @param bufferY buffer Y in degrees around which to download tiles
     1780         * @param bufferX buffer X in degrees around which to download tiles
     1781         * @param points list of points along which to download
    17821782         */
    17831783        public PrecacheTask(ProgressMonitor progressMonitor, List<LatLon> points, double bufferX, double bufferY) {
     
    18861886    public AbstractTileSourceLayer<T>.PrecacheTask getDownloadAreaToCacheTask(final ProgressMonitor progressMonitor, List<LatLon> points,
    18871887            double bufferX, double bufferY) {
    1888         PrecacheTask precacheTask = new PrecacheTask(progressMonitor, points, bufferX, bufferY);
    1889 
    1890         return precacheTask;
     1888        return new PrecacheTask(progressMonitor, points, bufferX, bufferY);
    18911889    }
    18921890
Note: See TracChangeset for help on using the changeset viewer.