Ignore:
Timestamp:
2016-05-15T00:51:10+02:00 (10 years ago)
Author:
Don-vip
Message:

sonar - squid:S2221 - "Exception" should not be caught when not required by called methods

File:
1 edited

Legend:

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

    r10106 r10212  
    1616import java.beans.PropertyChangeEvent;
    1717import java.beans.PropertyChangeListener;
     18import java.io.IOException;
    1819import java.net.URI;
    1920import java.net.URISyntaxException;
     
    12161217                                }
    12171218                            }
    1218                         } catch (Exception e) {
     1219                        } catch (URISyntaxException | IOException e) {
    12191220                            Main.error(e);
    12201221                        }
Note: See TracChangeset for help on using the changeset viewer.