- Timestamp:
- 2017-02-04T15:19:54+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/downloadtasks/AbstractChangesetDownloadTask.java
r10601 r11535 69 69 } catch (InterruptedException e) { 70 70 Main.warn("InterruptedException in "+getClass().getSimpleName()+" while updating changeset cache"); 71 Thread.currentThread().interrupt(); 71 72 } catch (InvocationTargetException e) { 72 73 Throwable t = e.getTargetException(); -
trunk/src/org/openstreetmap/josm/data/CustomConfigurator.java
r11521 r11535 376 376 } catch (InterruptedException ex) { 377 377 Main.warn(ex, "InterruptedException while reading local plugin information"); 378 Thread.currentThread().interrupt(); 378 379 } 379 380 -
trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java
r11397 r11535 406 406 LOG.log(Level.WARNING, "JCS - Exception during download {0}", getUrlNoException()); 407 407 Main.warn(e); 408 Thread.currentThread().interrupt(); 408 409 } 409 410 LOG.log(Level.WARNING, "JCS - Silent failure during download: {0}", getUrlNoException()); -
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r11348 r11535 410 410 // Occurs frequently during JOSM shutdown, log set to trace only 411 411 Main.trace("InterruptedException in "+MapStatus.class.getSimpleName()); 412 Thread.currentThread().interrupt(); 412 413 } catch (InvocationTargetException e) { 413 414 Main.warn(e); -
trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
r11466 r11535 704 704 } catch (InterruptedException ex) { 705 705 Main.warn("InterruptedException in "+NavigatableComponent.class.getSimpleName()+" during smooth scrolling"); 706 Thread.currentThread().interrupt(); 706 707 } 707 708 } -
trunk/src/org/openstreetmap/josm/gui/datatransfer/ClipboardUtils.java
r11454 r11535 114 114 Main.warn(ex, "InterruptedException in " + Utils.class.getSimpleName() 115 115 + " while getting clipboard content"); 116 Thread.currentThread().interrupt(); 116 117 } 117 118 } catch (NullPointerException e) { -
trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java
r10938 r11535 525 525 } catch (InterruptedException e1) { 526 526 Main.warn(e1, "InterruptedException in ChangesetDialog while downloading changeset header"); 527 Thread.currentThread().interrupt(); 527 528 } catch (ExecutionException e2) { 528 529 Main.error(e2); -
trunk/src/org/openstreetmap/josm/gui/io/UploadPrimitivesTask.java
r10627 r11535 230 230 Main.trace(e); 231 231 lastException = e; 232 Thread.currentThread().interrupt(); 232 233 } catch (InvocationTargetException e) { 233 234 Main.trace(e); -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java
r10173 r11535 82 82 } catch (InterruptedException e) { 83 83 Main.warn("InterruptedException in "+getClass().getSimpleName()+" while loading image "+file.getPath()); 84 Thread.currentThread().interrupt(); 84 85 } 85 86 } -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ThumbsLoader.java
r10300 r11535 115 115 } catch (InterruptedException e) { 116 116 Main.error(" InterruptedException while loading thumb"); 117 Thread.currentThread().interrupt(); 117 118 return null; 118 119 } … … 151 152 } catch (InterruptedException ie) { 152 153 Main.warn("InterruptedException while drawing thumb"); 154 Thread.currentThread().interrupt(); 153 155 } 154 156 } -
trunk/src/org/openstreetmap/josm/gui/layer/gpx/DownloadWmsAlongTrackAction.java
r11017 r11535 67 67 } catch (InterruptedException ex) { 68 68 Main.warn("InterruptedException in "+getClass().getSimpleName()+" while precaching WMS"); 69 Thread.currentThread().interrupt(); 69 70 } 70 71 } -
trunk/src/org/openstreetmap/josm/io/FileWatcher.java
r10615 r11535 114 114 key = watcher.take(); 115 115 } catch (InterruptedException x) { 116 Thread.currentThread().interrupt(); 116 117 return; 117 118 } -
trunk/src/org/openstreetmap/josm/io/OsmApi.java
r11532 r11535 563 563 } catch (InterruptedException ex) { 564 564 Main.warn("InterruptedException in "+getClass().getSimpleName()+" during sleep"); 565 Thread.currentThread().interrupt(); 565 566 } 566 567 } -
trunk/src/org/openstreetmap/josm/tools/HttpClient.java
r11381 r11535 664 664 } catch (InterruptedException ex) { 665 665 Main.warn("InterruptedException in " + HttpClient.class + " during cancel"); 666 Thread.currentThread().interrupt(); 666 667 } 667 668 connection.disconnect(); -
trunk/src/org/openstreetmap/josm/tools/PlatformHookOsx.java
r11162 r11535 133 133 } catch (InterruptedException e) { 134 134 Main.warn(e); 135 Thread.currentThread().interrupt(); 135 136 } 136 137 } -
trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportQueue.java
r11211 r11535 82 82 } catch (InterruptedException e) { 83 83 displayFor(BugReport.intercept(e)); 84 Thread.currentThread().interrupt(); 84 85 } 85 86 }
Note:
See TracChangeset
for help on using the changeset viewer.