Changeset 31475 in osm for applications/editors/josm/plugins/mapillary/src
- Timestamp:
- 2015-08-10T12:42:12+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/oauth/UploadUtils.java
r31473 r31475 154 154 this.images = images; 155 155 this.uuid = UUID.randomUUID(); 156 this.ex = new ThreadPoolExecutor( 1, 1, 25, TimeUnit.SECONDS,157 new ArrayBlockingQueue<Runnable>(1 00));156 this.ex = new ThreadPoolExecutor(8, 8, 25, TimeUnit.SECONDS, 157 new ArrayBlockingQueue<Runnable>(15)); 158 158 } 159 159 … … 176 176 } 177 177 this.ex.shutdown(); 178 PluginState.finishUpload(); 178 179 } 179 180 } -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryUtils.java
r31473 r31475 98 98 99 99 /** 100 * Open the default browser in the given URL. 101 * 100 102 * @param url 103 * The URL that is going to be opened. 101 104 */ 102 105 public static void browse(URL url) {
Note:
See TracChangeset
for help on using the changeset viewer.