Ignore:
Timestamp:
2014-04-26T15:28:16+02:00 (10 years ago)
Author:
Don-vip
Message:

see #8465 - use multi-catch where applicable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorDialog.java

    r6529 r7004  
    638638                    }
    639639                });
    640             } catch(InterruptedException e) {
     640            } catch(InterruptedException | InvocationTargetException e) {
    641641                // FIXME: signature of realRun should have a generic checked exception we
    642642                // could throw here
    643643                throw new RuntimeException(e);
    644             } catch(InvocationTargetException e) {
    645                 throw new RuntimeException(e);
    646644            } finally {
    647645                monitor.finishTask();
Note: See TracChangeset for help on using the changeset viewer.