diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchFactory.cpp b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchFactory.cpp
index 052fbf4..69f5504 100644
--- a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchFactory.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchFactory.cpp
@@ -77,7 +77,7 @@ void MatchFactory::createMatches(const ConstOsmMapPtr& map, vector<const Match*>
{
for (size_t i = 0; i < _creators.size(); ++i)
{
- LOG_DEBUG("Launching match creator " << i +1 << " / " << _creators.size() << "...");
+ LOG_DEBUG("Launching match creator " << i + 1 << " / " << _creators.size() << "...");
std::shared_ptr<MatchCreator> matchCreator = _creators[i];
_checkMatchCreatorBoundable(matchCreator, bounds);
if (threshold.get())
@@ -253,12 +253,15 @@ void MatchFactory::setConfiguration(const Settings& s)
MatchFactory& MatchFactory::getInstance()
{
- /* remove this hack after the following UI issues are fixed:
+ /* TODO: remove this hack after the following UI issues are fixed:
*
* https://github.com/ngageoint/hootenanny-ui/issues/969
* https://github.com/ngageoint/hootenanny-ui/issues/970
* https://github.com/ngageoint/hootenanny-ui/issues/971
* https://github.com/ngageoint/hootenanny-ui/issues/972
+ *
+ * UPDATE: 8/21/19 - Believe the above issues should all have been fixed in v2 version of the UI.
+ * So, maybe replace these fixes with error checking and throw exceptions when bad inputs come in.
* */
if (ConfigOptions().getAutocorrectOptions())
{