Skip to content

Commit

Permalink
Remove ignition (#525)
Browse files Browse the repository at this point in the history
Signed-off-by: Nate Koenig <[email protected]>
Co-authored-by: Michael Carroll <[email protected]>
  • Loading branch information
nkoenig and mjcarroll committed Oct 25, 2023
1 parent 2765c5f commit 7d88e7f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
http://ignition_robotics.org
http://gazebosim.org
2 changes: 1 addition & 1 deletion graphics/src/AssimpLoader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class AssimpLoader::Implementation
/// \brief the Assimp importer used to parse meshes
public: Assimp::Importer importer;

/// \brief Convert a color from assimp implementation to Ignition common
/// \brief Convert a color from assimp implementation to Gazebo common
/// \param[in] _color the assimp color to convert
/// \return the matching math::Color
public: math::Color ConvertColor(aiColor4D& _color) const;
Expand Down
4 changes: 2 additions & 2 deletions src/Filesystem_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ TEST_F(FilesystemTest, append)
#endif

// Make sure that the slashes in the middle of string are not altered.
path = joinPaths("https://fuel.ignitionrobotics.org", "/models", "box");
EXPECT_EQ(path, "https://fuel.ignitionrobotics.org/models/box");
path = joinPaths("https://fuel.gazebosim.org", "/models", "box");
EXPECT_EQ(path, "https://fuel.gazebosim.org/models/box");
}

/////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion tutorials/profiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
find_package(gz-common6 QUIET REQUIRED COMPONENTS profiler)
add_executable(profiler_example profiler.cc)
target_link_libraries(profiler_example ignition-common6::profiler)
target_link_libraries(profiler_example gz-common6::profiler)
# Enable the profiler for the example
target_compile_definitions(profiler_example PUBLIC "GZ_PROFILER_ENABLE=1")
```
Expand Down

0 comments on commit 7d88e7f

Please sign in to comment.