Skip to content

Commit

Permalink
change remove empty relations op ordering
Browse files Browse the repository at this point in the history
1. refs #2062
  • Loading branch information
bwitham committed Jan 23, 2018
1 parent 621807d commit 7958fef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conf/core/ConfigOptions.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ See also:
** `hoot::RemoveDuplicateReviewsOp` - Removes any duplicate reviews
** `hoot::BuildingOutlineUpdateOp` - Updates any multi-part building outlines that may have changed during conflation.
** `hoot::RemoveInvalidMultilineStringMembersVisitor` - Removes invalid multilinestring relations.
** `hoot::RemoveEmptyRelationsVisitor` - Removes empty relations.
** `hoot::AddHilbertReviewSortOrderOp` - Adds a sorting value to all reviews. By processing reviews in sorted order the results are a little more logically ordered.
** `hoot::RemoveEmptyRelationsVisitor` - Removes empty relations.

List of operations to run in the conflate command after data is conflated, after the ops in
unify.post.ops (if using Unifying Conflation), but before exporting.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void RemoveEmptyRelationsVisitor::visit(const boost::shared_ptr<Element>& e)
}
else
{
LOG_TRACE("Relation not empty: " << r->getId());
LOG_TRACE("Relation not empty: " << r->getId() << " child count: " << r->getMembers().size());
}
}
}
Expand Down

0 comments on commit 7958fef

Please sign in to comment.