Changeset 31346 in osm for applications/editors
- Timestamp:
- 2015-07-06T22:08:05+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/downloads
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/downloads/MapillarySequenceDownloadThread.java
r31341 r31346 108 108 } 109 109 MapillaryImage.lock.unlock(); 110 manager.imagesAdded = imagesAdded; 110 if (manager != null) { 111 manager.imagesAdded = imagesAdded; 112 } 111 113 layer.data 112 114 .addWithoutUpdate(new ArrayList<MapillaryAbstractImage>( -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/downloads/MapillarySquareDownloadManagerThread.java
r31333 r31346 68 68 while (!ex.isShutdown()) { 69 69 ex.execute(new MapillarySequenceDownloadThread(ex, urlSequences 70 + "&page=" + page + "&limit=1 ", layer, this));70 + "&page=" + page + "&limit=10", layer, this)); 71 71 while (ex.getQueue().remainingCapacity() == 0) 72 Thread.sleep( 100);72 Thread.sleep(500); 73 73 page++; 74 74 }
Note:
See TracChangeset
for help on using the changeset viewer.