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/tools/Utils.java

    r7003 r7004  
    461461                return (String) t.getTransferData(DataFlavor.stringFlavor);
    462462            }
    463         } catch (UnsupportedFlavorException ex) {
    464             Main.error(ex);
    465             return null;
    466         } catch (IOException ex) {
     463        } catch (UnsupportedFlavorException | IOException ex) {
    467464            Main.error(ex);
    468465            return null;
Note: See TracChangeset for help on using the changeset viewer.