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

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

fix javadoc, comments

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