diff options
author | UbitUmarov | 2019-10-22 12:39:50 +0100 |
---|---|---|
committer | UbitUmarov | 2019-10-22 12:39:50 +0100 |
commit | da0a8d6c43054b1b6b7487fc5fc78f03af349c02 (patch) | |
tree | 06c005fd81f0ccfe12a57337873adc9e45080ede /OpenSim/Region/CoreModules/Avatar/Attachments | |
parent | remove some useless NULL arguments (diff) | |
download | opensim-SC-da0a8d6c43054b1b6b7487fc5fc78f03af349c02.zip opensim-SC-da0a8d6c43054b1b6b7487fc5fc78f03af349c02.tar.gz opensim-SC-da0a8d6c43054b1b6b7487fc5fc78f03af349c02.tar.bz2 opensim-SC-da0a8d6c43054b1b6b7487fc5fc78f03af349c02.tar.xz |
remove some more useless NULL arguments
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Attachments')
-rwxr-xr-x | OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs index a43db33..e342897 100755 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | |||
@@ -165,14 +165,14 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
165 | { | 165 | { |
166 | DebugLevel = debugLevel; | 166 | DebugLevel = debugLevel; |
167 | MainConsole.Instance.Output( | 167 | MainConsole.Instance.Output( |
168 | "Set attachments debug level to {0} in {1}", null, DebugLevel, m_scene.Name); | 168 | "Set attachments debug level to {0} in {1}", DebugLevel, m_scene.Name); |
169 | } | 169 | } |
170 | } | 170 | } |
171 | 171 | ||
172 | private void HandleDebugAttachmentsStatus(string module, string[] args) | 172 | private void HandleDebugAttachmentsStatus(string module, string[] args) |
173 | { | 173 | { |
174 | MainConsole.Instance.Output("Settings for {0}", null, m_scene.Name); | 174 | MainConsole.Instance.Output("Settings for {0}", m_scene.Name); |
175 | MainConsole.Instance.Output("Debug logging level: {0}", null, DebugLevel); | 175 | MainConsole.Instance.Output("Debug logging level: {0}", DebugLevel); |
176 | } | 176 | } |
177 | 177 | ||
178 | protected void HandleShowAttachmentsCommand(string module, string[] cmd) | 178 | protected void HandleShowAttachmentsCommand(string module, string[] cmd) |