Skip to content

v0.2.47..v0.2.48 changeset CumulativeConflator.cpp

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-rnd/src/main/cpp/hoot/rnd/conflate/CumulativeConflator.cpp b/hoot-rnd/src/main/cpp/hoot/rnd/conflate/CumulativeConflator.cpp
index c85cdba..9d66451 100644
--- a/hoot-rnd/src/main/cpp/hoot/rnd/conflate/CumulativeConflator.cpp
+++ b/hoot-rnd/src/main/cpp/hoot/rnd/conflate/CumulativeConflator.cpp
@@ -72,8 +72,7 @@ void CumulativeConflator::conflate(const QStringList& inputs, const QString& out
     if (i == 0)
     {
       OsmMapReaderFactory::read(
-        cumulativeMap, inputs[i], ConfigOptions().getReaderConflateUseDataSourceIds1(),
-        Status::Unknown1);
+        cumulativeMap, inputs[i], ConfigOptions().getConflateUseDataSourceIds1(), Status::Unknown1);
 
       //keep a source tag history on the data for provenance; append to any existing source values
       //(this shouldn't be added to any review relations)
@@ -97,8 +96,7 @@ void CumulativeConflator::conflate(const QStringList& inputs, const QString& out
 
       OsmMapPtr unknown2Map(new OsmMap());
       OsmMapReaderFactory::read(
-        unknown2Map, inputs[i], ConfigOptions().getReaderConflateUseDataSourceIds2(),
-        Status::Unknown2);
+        unknown2Map, inputs[i], ConfigOptions().getConflateUseDataSourceIds2(), Status::Unknown2);
       MapProjector::projectToWgs84(unknown2Map);
 
       //Same as above, but do this before combining the cumulative map with the unknown2 map to
Clone this wiki locally