- Timestamp:
- 2018-11-16T23:09:55+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/AbstractTileSourceLayer.java
r14427 r14428 1777 1777 /** 1778 1778 * @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 1782 1782 */ 1783 1783 public PrecacheTask(ProgressMonitor progressMonitor, List<LatLon> points, double bufferX, double bufferY) { … … 1886 1886 public AbstractTileSourceLayer<T>.PrecacheTask getDownloadAreaToCacheTask(final ProgressMonitor progressMonitor, List<LatLon> points, 1887 1887 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); 1891 1889 } 1892 1890
Note:
See TracChangeset
for help on using the changeset viewer.