Changeset 35720 in osm
- Timestamp:
- 2021-03-10T08:37:58+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfConstants.java
r35708 r35720 15 15 * File extension. 16 16 */ 17 String EXTENSION = "pbf"; 17 String EXTENSION = "osm.pbf"; 18 18 19 19 /** 20 20 * File filter used in import/export dialogs. 21 21 */ 22 ExtensionFileFilter FILE_FILTER = new ExtensionFileFilter( EXTENSION, EXTENSION,22 ExtensionFileFilter FILE_FILTER = new ExtensionFileFilter("pbf", EXTENSION, 23 23 tr("OSM Server Files pbf compressed") + " (*."+EXTENSION+")"); 24 24 }
Note:
See TracChangeset
for help on using the changeset viewer.