Changeset 8453 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2015-06-03T02:59:15+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r8443 r8453 195 195 public static class DynamicURLClassLoader extends URLClassLoader { 196 196 197 /** 198 * Constructs a new {@code DynamicURLClassLoader}. 199 * @param urls the URLs from which to load classes and resources 200 * @param parent the parent class loader for delegation 201 */ 197 202 public DynamicURLClassLoader(URL[] urls, ClassLoader parent) { 198 203 super(urls, parent); … … 208 213 * List of unmaintained plugins. Not really up-to-date as the vast majority of plugins are not maintained after a few months, sadly... 209 214 */ 210 private static final String[] UNMAINTAINED_PLUGINS = new String[] {"gpsbabelgui", "Intersect_way"}; 215 private static final String[] UNMAINTAINED_PLUGINS = new String[] { 216 "gpsbabelgui", 217 "Intersect_way", 218 "CADTools", // See #11438, #11518, https://github.com/ROTARIUANAMARIA/CADTools/issues/1 219 "ContourOverlappingMerge", // See #11202, #11518, https://github.com/bularcasergiu/ContourOverlappingMerge/issues/1 220 "LaneConnector" // See #11468, #11518, https://github.com/TrifanAdrian/LanecConnectorPlugin/issues/1 221 }; 211 222 212 223 /** … … 684 695 685 696 /** 686 * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early} 687 * set to true.688 * 697 * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early} set to true. 698 * 699 * @param parent The parent component to be used for the displayed dialog 689 700 * @param plugins the collection of plugins 690 701 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. … … 701 712 702 713 /** 703 * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early} 704 * set to false. 714 * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early} set to false. 705 715 * 706 716 * @param parent The parent component to be used for the displayed dialog
Note:
See TracChangeset
for help on using the changeset viewer.