Ignore:
Timestamp:
2015-06-19T23:34:50+02:00 (9 years ago)
Author:
Don-vip
Message:

fix some Sonar issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/Plugin.java

    r7033 r8506  
    103103    /**
    104104     * Copies the resource 'from' to the file in the plugin directory named 'to'.
     105     * @throws FileNotFoundException if the file exists but is a directory rather than a regular file,
     106     * does not exist but cannot be created, or cannot be opened for any other reason
     107     * @throws IOException if any other I/O error occurs
    105108     */
    106     public void copy(String from, String to) throws FileNotFoundException, IOException {
     109    public void copy(String from, String to) throws IOException {
    107110        String pluginDirName = getPluginDir();
    108111        File pluginDir = new File(pluginDirName);
Note: See TracChangeset for help on using the changeset viewer.