Skip to content

Commit

Permalink
Update contact summary method name
Browse files Browse the repository at this point in the history
  • Loading branch information
marrts committed Dec 18, 2024
1 parent 45b4a92 commit d65e9da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ ContinuousContactCheckTask::runImpl(TaskComposerContext& context, OptionalTaskCo
const auto& contact_map = contacts[i];
if (!contact_map.empty())
{
ss << contact_map.getCollisionSummary() << "\n";
ss << contact_map.getSummary() << "\n";
}
}
info->status_message = ss.str();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ std::unique_ptr<TaskComposerNodeInfo> DiscreteContactCheckTask::runImpl(TaskComp
const auto& contact_map = contacts[i];
if (!contact_map.empty())
{
ss << contact_map.getCollisionSummary() << "\n";
ss << contact_map.getSummary() << "\n";
}
}
info->status_message = ss.str();
Expand Down

0 comments on commit d65e9da

Please sign in to comment.