Skip to content

v0.2.47..v0.2.48 changeset OsmXmlChangesetFileWriter.h

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/io/OsmXmlChangesetFileWriter.h b/hoot-core/src/main/cpp/hoot/core/io/OsmXmlChangesetFileWriter.h
index 724af3a..3474e37 100644
--- a/hoot-core/src/main/cpp/hoot/core/io/OsmXmlChangesetFileWriter.h
+++ b/hoot-core/src/main/cpp/hoot/core/io/OsmXmlChangesetFileWriter.h
@@ -58,14 +58,7 @@ public:
   OsmXmlChangesetFileWriter();
 
   /**
-   * Write the changeset out to the specified file and any changes over changeset.max.size
-   * will be written to another file with a path like this:
-   *  <filepath>/<filename>.<ext>
-   *  <filepath>/<filename>-001.<ext>
-   *  <filepath>/<filename>-002.<ext>
-   *  ...
-   *  <filepath>/<filename>-00n.<ext>
-   *
+   * Write the changeset out to the specified file
    * @param path Pathname for the output file(s)
    * @param cs Changeset provider to stream the changes from
    */
@@ -80,13 +73,12 @@ public:
 
   bool getMultipleChangesetsWritten() const { return _multipleChangesetsWritten; }
 
-  QString getStatsTable() { return _stats.toTableString(); }
+  QString getStatsTable() const { return _stats.toTableString(); }
 
 private:
 
   /** Settings from the config file */
   int _precision;
-  long _changesetMaxSize;
 
   Change _change;
 
Clone this wiki locally