Changeset 5195 in josm for trunk/src/org
- Timestamp:
- 2012-04-16T22:27:19+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/Main.java
r5177 r5195 328 328 329 329 try { 330 Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()).invokeAll(tasks); 331 } catch (InterruptedException ex) { 330 for (Future<Void> i : Executors.newFixedThreadPool( 331 Runtime.getRuntime().availableProcessors()).invokeAll(tasks)) { 332 i.get(); 333 } 334 } catch (Exception ex) { 332 335 throw new RuntimeException(ex); 333 336 } … … 624 627 /** 625 628 * The type of a command line parameter, to be used in switch statements. 626 * @see paramType629 * @see #paramType 627 630 */ 628 631 private enum DownloadParamType { httpUrl, fileUrl, bounds, fileName } … … 681 684 * @param rawGps Flag to download raw GPS tracks 682 685 * @param b The bounds value 683 * @see downloadFromParamBounds(final boolean rawGps, String s)684 * @see downloadFromParamHttp686 * @see #downloadFromParamBounds(boolean, String) 687 * @see #downloadFromParamHttp 685 688 */ 686 689 private static void downloadFromParamBounds(final boolean rawGps, Bounds b) {
Note:
See TracChangeset
for help on using the changeset viewer.