Changeset 10627 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2016-07-24T14:48:47+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java ¶
r10626 r10627 257 257 sources.add(org.openstreetmap.josm.gui.MainApplication.class.getClassLoader()); 258 258 } catch (SecurityException ex) { 259 Main.debug(ex); 259 260 sources.add(ImageProvider.class.getClassLoader()); 260 261 } -
TabularUnified trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java ¶
r10358 r10627 216 216 s = tr(s); 217 217 } catch (IllegalArgumentException e) { 218 Main.debug(e); 218 219 Main.info(tr("Invalid plugin description ''{0}'' in plugin {1}", s, name)); 219 220 } -
TabularUnified trunk/src/org/openstreetmap/josm/plugins/PluginProxy.java ¶
r10212 r10627 45 45 plugin.getClass().getMethod("mapFrameInitialized", MapFrame.class, MapFrame.class).invoke(plugin, oldFrame, newFrame); 46 46 } catch (NoSuchMethodException e) { 47 Main.trace(e); 47 48 Main.debug("Plugin "+plugin+" does not define mapFrameInitialized"); 48 49 } catch (InvocationTargetException | IllegalAccessException | IllegalArgumentException e) { … … 56 57 return (PreferenceSetting) plugin.getClass().getMethod("getPreferenceSetting").invoke(plugin); 57 58 } catch (NoSuchMethodException e) { 59 Main.trace(e); 58 60 Main.debug("Plugin "+plugin+" does not define getPreferenceSetting"); 59 61 return null; … … 69 71 plugin.getClass().getMethod("addDownloadSelection", List.class).invoke(plugin, list); 70 72 } catch (NoSuchMethodException e) { 73 Main.trace(e); 71 74 Main.debug("Plugin "+plugin+" does not define addDownloadSelection"); 72 75 } catch (InvocationTargetException | IllegalAccessException | IllegalArgumentException e) {
Note:
See TracChangeset
for help on using the changeset viewer.