Changeset 32287 in osm for applications/editors/josm/plugins/poly/src
- Timestamp:
- 2016-06-16T23:05:20+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/poly/src/poly/PolyPlugin.java
r28570 r32287 13 13 public class PolyPlugin extends Plugin { 14 14 15 /** 16 * Constructs a new {@code PolyPlugin}. 17 * @param info plugin information 18 */ 15 19 public PolyPlugin(PluginInformation info) { 16 20 super(info); 17 ExtensionFileFilter. importers.add(new PolyImporter());18 ExtensionFileFilter. exporters.add(new PolyExporter());21 ExtensionFileFilter.addImporter(new PolyImporter()); 22 ExtensionFileFilter.addExporter(new PolyExporter()); 19 23 Main.main.menu.openLocation.addDownloadTaskClass(DownloadPolyTask.class); 20 24 }
Note:
See TracChangeset
for help on using the changeset viewer.