Changeset 32292 in osm for applications/editors/josm/plugins/ColumbusCSV/src/org
- Timestamp:
- 2016-06-16T23:31:32+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVPlugin.java
r30768 r32292 28 28 public class ColumbusCSVPlugin extends Plugin { 29 29 private static PreferenceSetting columbusSettings; 30 /* 30 /** 31 31 * Plugin constructor (adds menu entry to file menu). 32 32 */ … … 34 34 super(info); 35 35 36 ExtensionFileFilter. importers.add(new ColumbusCSVImporter());36 ExtensionFileFilter.addImporter(new ColumbusCSVImporter()); 37 37 } 38 38 … … 41 41 * if any available. 42 42 */ 43 @Override 43 44 public PreferenceSetting getPreferenceSetting() { 44 45 if (columbusSettings == null) {
Note:
See TracChangeset
for help on using the changeset viewer.