Changeset 8506 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2015-06-19T23:34:50+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/Plugin.java
r7033 r8506 103 103 /** 104 104 * 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 105 108 */ 106 public void copy(String from, String to) throws FileNotFoundException,IOException {109 public void copy(String from, String to) throws IOException { 107 110 String pluginDirName = getPluginDir(); 108 111 File pluginDir = new File(pluginDirName);
Note:
See TracChangeset
for help on using the changeset viewer.