Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecations: tock #705

Merged
merged 3 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ Deprecated code produces compile-time warnings. These warning serve as
notification to users that their code should be upgraded. The next major
release will remove the deprecated code.

## Gazebo Physics 8.X to 9.X

### Deprecations

* The macro `GZ_PHYSICS_ENGINE_INSTALL_DIR` is deprecated. Use
`gz::physics::getEngineInstallDir()` instead.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we just remove the macro like other gz packages?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about now? e1e5bae


## Gazebo Physics 5.X to 6.X

### Deprecations
Expand Down
11 changes: 0 additions & 11 deletions dartsim/src/SDFFeatures_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -361,17 +361,6 @@ TEST_P(SDFFeatures_TEST, CheckDartsimData)
std::numeric_limits<double>::infinity(),
std::numeric_limits<double>::infinity());

/// \todo (anyone) getBodyNode("blah")->getFrictionCoeff is deprecated,
/// disabling these tests.
/*
EXPECT_DOUBLE_EQ(1.1, skeleton->getBodyNode("base")->getFrictionCoeff());
// The last collision element overwrites the value set by previous collision
// elements. We expect mu=1, the default value, instead of 0.1.
EXPECT_DOUBLE_EQ(1, skeleton->getBodyNode("upper_link")->getFrictionCoeff());
// Gets the default value when the <surface> tag is missing
EXPECT_DOUBLE_EQ(1, skeleton->getBodyNode("lower_link")->getFrictionCoeff());
*/

for (const auto * joint : {skeleton->getJoint(1), skeleton->getJoint(2)})
{
const auto * revolute =
Expand Down
Loading