From 46e36601cb3c54e6e441284aed7c0c5c35970a4c Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 22 Oct 2019 13:04:01 +0100 Subject: remove some more useless NULL arguments --- .../Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/OptionalModules/World/SceneCommands') diff --git a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs index 6eac299..8596159 100755 --- a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs +++ b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs @@ -145,7 +145,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments cdl.AddRow("teleport", m_scene.DebugTeleporting); cdl.AddRow("updates", m_scene.DebugUpdates); - MainConsole.Instance.Output("Scene {0} options:", null, m_scene.Name); + MainConsole.Instance.Output("Scene {0} options:", m_scene.Name); MainConsole.Instance.Output(cdl.ToString()); } @@ -160,7 +160,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments string value = args[4]; SetSceneDebugOptions(new Dictionary() { { key, value } }); - MainConsole.Instance.Output("Set {0} debug scene {1} = {2}", null, m_scene.Name, key, value); + MainConsole.Instance.Output("Set {0} debug scene {1} = {2}", m_scene.Name, key, value); } else { -- cgit v1.1