Changeset 31201 in osm for applications/editors
- Timestamp:
- 2015-06-03T16:28:32+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImage.java
r31176 r31201 95 95 } 96 96 97 public Boolean equals(MapillaryImage image) { 98 return this.key.equals(image.getKey()); 97 @Override 98 public boolean equals(Object image) { 99 if (image instanceof MapillaryImage) 100 return this.key.equals(((MapillaryImage) image).getKey()); 101 return false; 99 102 } 100 103 -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/downloads/MapillarySequenceDownloadThread.java
r31198 r31201 49 49 50 50 if (!jsonall.getBoolean("more") && !ex.isShutdown()) { 51 ex.shutdown Now();51 ex.shutdown(); 52 52 } 53 53 JsonArray jsonseq = jsonall.getJsonArray("ss"); -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/downloads/MapillarySquareDownloadManagerThread.java
r31176 r31201 36 36 37 37 public void downloadSequences() { 38 ThreadPoolExecutor ex = new ThreadPoolExecutor( 20, 35, 25,38 ThreadPoolExecutor ex = new ThreadPoolExecutor(3, 5, 25, 39 39 TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(5)); 40 40 int page = 0;
Note:
See TracChangeset
for help on using the changeset viewer.