- Timestamp:
- 2024-08-06T15:18:35+02:00 (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r19154 r19168 969 969 continue; 970 970 } 971 boolean found = false; 971 972 for (PluginProxy proxy : pluginList) { 972 973 if (isDependency(proxy.getPluginInformation(), depName)) { 973 cl.addDependency(proxy.getClassLoader());974 found = cl.addDependency(proxy.getClassLoader()); 974 975 break; 975 976 } 976 977 } 977 Logging.error("unable to find dependency " + depName + " for plugin " + info.getName()); 978 if (!found) { 979 Logging.error("unable to find dependency " + depName + " for plugin " + info.getName()); 980 } 978 981 } 979 982 }
Note:
See TracChangeset
for help on using the changeset viewer.