Changeset 10238 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2016-05-17T02:32:56+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r10216 r10238 220 220 * List of unmaintained plugins. Not really up-to-date as the vast majority of plugins are not maintained after a few months, sadly... 221 221 */ 222 static final String[]UNMAINTAINED_PLUGINS =new String[] {222 static final List<String> UNMAINTAINED_PLUGINS = Collections.unmodifiableList(Arrays.asList( 223 223 "gpsbabelgui", 224 224 "Intersect_way", … … 226 226 "LaneConnector", // See #11468, #11518, https://github.com/TrifanAdrian/LanecConnectorPlugin/issues/1 227 227 "Remove.redundant.points" // See #11468, #11518, https://github.com/bularcasergiu/RemoveRedundantPoints (not even created an issue...) 228 };228 )); 229 229 230 230 /** … … 1486 1486 */ 1487 1487 public static Set<String> getDeprecatedAndUnmaintainedPlugins() { 1488 Set<String> result = new HashSet<>(DEPRECATED_PLUGINS.size() + UNMAINTAINED_PLUGINS. length);1488 Set<String> result = new HashSet<>(DEPRECATED_PLUGINS.size() + UNMAINTAINED_PLUGINS.size()); 1489 1489 for (DeprecatedPlugin dp : DEPRECATED_PLUGINS) { 1490 1490 result.add(dp.name); 1491 1491 } 1492 result.addAll( Arrays.asList(UNMAINTAINED_PLUGINS));1492 result.addAll(UNMAINTAINED_PLUGINS); 1493 1493 return result; 1494 1494 }
Note:
See TracChangeset
for help on using the changeset viewer.