diff options
author | UbitUmarov | 2019-10-22 13:04:01 +0100 |
---|---|---|
committer | UbitUmarov | 2019-10-22 13:04:01 +0100 |
commit | 46e36601cb3c54e6e441284aed7c0c5c35970a4c (patch) | |
tree | bf52486c1e8edaae327d7d93ea3ae6e6fd48a61d /OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs | |
parent | remove some more useless NULL arguments (diff) | |
download | opensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.zip opensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.tar.gz opensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.tar.bz2 opensim-SC-46e36601cb3c54e6e441284aed7c0c5c35970a4c.tar.xz |
remove some more useless NULL arguments
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs b/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs index 1db9ba7..68cdb3b 100755 --- a/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Appearance/AppearanceInfoModule.cs | |||
@@ -180,7 +180,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance | |||
180 | { | 180 | { |
181 | MainConsole.Instance.Output( | 181 | MainConsole.Instance.Output( |
182 | "Sending appearance information for {0} to all other avatars in {1}", | 182 | "Sending appearance information for {0} to all other avatars in {1}", |
183 | null, | ||
184 | sp.Name, scene.RegionInfo.RegionName); | 183 | sp.Name, scene.RegionInfo.RegionName); |
185 | 184 | ||
186 | scene.AvatarFactory.SendAppearance(sp.UUID); | 185 | scene.AvatarFactory.SendAppearance(sp.UUID); |
@@ -193,7 +192,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance | |||
193 | { | 192 | { |
194 | MainConsole.Instance.Output( | 193 | MainConsole.Instance.Output( |
195 | "Sending appearance information for {0} to all other avatars in {1}", | 194 | "Sending appearance information for {0} to all other avatars in {1}", |
196 | null, | ||
197 | sp.Name, scene.RegionInfo.RegionName); | 195 | sp.Name, scene.RegionInfo.RegionName); |
198 | 196 | ||
199 | scene.AvatarFactory.SendAppearance(sp.UUID); | 197 | scene.AvatarFactory.SendAppearance(sp.UUID); |
@@ -240,7 +238,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance | |||
240 | { | 238 | { |
241 | bool bakedTextureValid = scene.AvatarFactory.ValidateBakedTextureCache(sp); | 239 | bool bakedTextureValid = scene.AvatarFactory.ValidateBakedTextureCache(sp); |
242 | MainConsole.Instance.Output( | 240 | MainConsole.Instance.Output( |
243 | "{0} baked appearance texture is {1}", null, sp.Name, bakedTextureValid ? "OK" : "incomplete"); | 241 | "{0} baked appearance texture is {1}", sp.Name, bakedTextureValid ? "OK" : "incomplete"); |
244 | } | 242 | } |
245 | ); | 243 | ); |
246 | } | 244 | } |
@@ -271,12 +269,10 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance | |||
271 | if (rebakesRequested > 0) | 269 | if (rebakesRequested > 0) |
272 | MainConsole.Instance.Output( | 270 | MainConsole.Instance.Output( |
273 | "Requesting rebake of {0} uploaded textures for {1} in {2}", | 271 | "Requesting rebake of {0} uploaded textures for {1} in {2}", |
274 | null, | ||
275 | rebakesRequested, sp.Name, scene.RegionInfo.RegionName); | 272 | rebakesRequested, sp.Name, scene.RegionInfo.RegionName); |
276 | else | 273 | else |
277 | MainConsole.Instance.Output( | 274 | MainConsole.Instance.Output( |
278 | "No texture IDs available for rebake request for {0} in {1}", | 275 | "No texture IDs available for rebake request for {0} in {1}", |
279 | null, | ||
280 | sp.Name, scene.RegionInfo.RegionName); | 276 | sp.Name, scene.RegionInfo.RegionName); |
281 | } | 277 | } |
282 | } | 278 | } |
@@ -320,7 +316,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.Appearance | |||
320 | { | 316 | { |
321 | MainConsole.Instance.Output( | 317 | MainConsole.Instance.Output( |
322 | "{0} matched {1}", | 318 | "{0} matched {1}", |
323 | null, | ||
324 | rawUuid, | 319 | rawUuid, |
325 | string.Join(", ", matchedAvatars.ToList().ConvertAll<string>(sp => sp.Name).ToArray())); | 320 | string.Join(", ", matchedAvatars.ToList().ConvertAll<string>(sp => sp.Name).ToArray())); |
326 | } | 321 | } |