Skip to content

Commit 2ccec1d

Browse files
authored
Merge branch 'ign-gazebo4' into remove_playback_path_dome
2 parents a7121cf + 8fd9b26 commit 2ccec1d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/SimulationRunner.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -872,18 +872,18 @@ void SimulationRunner::LoadLoggingPlugins(const ServerConfig &_config)
872872
{
873873
std::list<ServerConfig::PluginInfo> plugins;
874874

875-
if(_config.UseLogRecord() && !_config.LogPlaybackPath().empty())
875+
if (_config.UseLogRecord() && !_config.LogPlaybackPath().empty())
876876
{
877877
ignwarn <<
878878
"Both recording and playback are specified, defaulting to playback\n";
879879
}
880880

881-
if(!_config.LogPlaybackPath().empty())
881+
if (!_config.LogPlaybackPath().empty())
882882
{
883883
auto playbackPlugin = _config.LogPlaybackPlugin();
884884
plugins.push_back(playbackPlugin);
885885
}
886-
else if(_config.UseLogRecord())
886+
else if (_config.UseLogRecord())
887887
{
888888
auto recordPlugin = _config.LogRecordPlugin();
889889
plugins.push_back(recordPlugin);

test/integration/logical_camera_system.cc

-1
Original file line numberDiff line numberDiff line change
@@ -190,5 +190,4 @@ TEST_F(LogicalCameraTest, LogicalCameraBox)
190190
ignition::math::Pose3d boxPoseCamera2Frame = boxPose - sensor2Pose;
191191
EXPECT_EQ(boxPoseCamera2Frame, ignition::msgs::Convert(img2.model(0).pose()));
192192
mutex.unlock();
193-
194193
}

0 commit comments

Comments
 (0)