source: josm/trunk/src/org/openstreetmap/josm/io/OsmBzip2Exporter.java@ 9411

Last change on this file since 9411 was 6718, checked in by Don-vip, 10 years ago

fix javadoc, comments

  • Property svn:eol-style set to native
File size: 411 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4/**
5 * OSM data exporter that compresses it in Bzip2 format.
6 */
7public class OsmBzip2Exporter extends OsmExporter {
8
9 /**
10 * Constructs a new {@code OsmBzip2Exporter}.
11 */
12 public OsmBzip2Exporter() {
13 super(OsmBzip2Importer.FILE_FILTER);
14 }
15
16 // compression handling is performed in super-class
17
18}
Note: See TracBrowser for help on using the repository browser.