Changeset 10212 in josm for trunk/src/org/openstreetmap/josm/actions/JosmAction.java
- Timestamp:
- 2016-05-15T00:51:10+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/JosmAction.java
r10074 r10212 6 6 import java.awt.event.KeyEvent; 7 7 import java.util.Collection; 8 import java.util.concurrent.CancellationException; 9 import java.util.concurrent.ExecutionException; 8 10 import java.util.concurrent.Future; 9 11 … … 239 241 try { 240 242 future.get(); 241 } catch (Exception e) { 243 } catch (InterruptedException | ExecutionException | CancellationException e) { 242 244 Main.error(e); 243 245 return;
Note:
See TracChangeset
for help on using the changeset viewer.
