Last change
on this file since 6718 was 6718, checked in by Don-vip, 11 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.
|
---|
2 | package org.openstreetmap.josm.io;
|
---|
3 |
|
---|
4 | /**
|
---|
5 | * OSM data exporter that compresses it in Bzip2 format.
|
---|
6 | */
|
---|
7 | public 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.