diff options
author | UbitUmarov | 2019-10-22 12:23:19 +0100 |
---|---|---|
committer | UbitUmarov | 2019-10-22 12:23:19 +0100 |
commit | b98ad6c53c484aa2744c5040c9f29c475c3d4f72 (patch) | |
tree | 2ed849e6441381b48a45c87b0e2df8fe9c80a7af /OpenSim/Framework/Servers/ServerBase.cs | |
parent | missing file (diff) | |
download | opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.zip opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.tar.gz opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.tar.bz2 opensim-SC-b98ad6c53c484aa2744c5040c9f29c475c3d4f72.tar.xz |
remove some useless NULL arguments
Diffstat (limited to 'OpenSim/Framework/Servers/ServerBase.cs')
-rwxr-xr-x | OpenSim/Framework/Servers/ServerBase.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Framework/Servers/ServerBase.cs b/OpenSim/Framework/Servers/ServerBase.cs index 78341d4..8545012 100755 --- a/OpenSim/Framework/Servers/ServerBase.cs +++ b/OpenSim/Framework/Servers/ServerBase.cs | |||
@@ -492,7 +492,7 @@ namespace OpenSim.Framework.Servers | |||
492 | 492 | ||
493 | if (!int.TryParse(rawLevel, out newLevel)) | 493 | if (!int.TryParse(rawLevel, out newLevel)) |
494 | { | 494 | { |
495 | MainConsole.Instance.Output("{0} is not a valid debug level", null, rawLevel); | 495 | MainConsole.Instance.Output("{0} is not a valid debug level", rawLevel); |
496 | return; | 496 | return; |
497 | } | 497 | } |
498 | 498 | ||
@@ -503,7 +503,7 @@ namespace OpenSim.Framework.Servers | |||
503 | } | 503 | } |
504 | 504 | ||
505 | Util.LogThreadPool = newLevel; | 505 | Util.LogThreadPool = newLevel; |
506 | MainConsole.Instance.Output("LogThreadPool set to {0}", null, newLevel); | 506 | MainConsole.Instance.Output("LogThreadPool set to {0}", newLevel); |
507 | } | 507 | } |
508 | 508 | ||
509 | private void HandleForceGc(string module, string[] args) | 509 | private void HandleForceGc(string module, string[] args) |
@@ -991,9 +991,9 @@ namespace OpenSim.Framework.Servers | |||
991 | } | 991 | } |
992 | 992 | ||
993 | if (Watchdog.AbortThread(threadId)) | 993 | if (Watchdog.AbortThread(threadId)) |
994 | MainConsole.Instance.Output("Aborted thread with id {0}", null, threadId); | 994 | MainConsole.Instance.Output("Aborted thread with id {0}", threadId); |
995 | else | 995 | else |
996 | MainConsole.Instance.Output("ERROR - Thread with id {0} not found in managed threads", null, threadId); | 996 | MainConsole.Instance.Output("ERROR - Thread with id {0} not found in managed threads", threadId); |
997 | } | 997 | } |
998 | 998 | ||
999 | /// <summary> | 999 | /// <summary> |
@@ -1020,7 +1020,7 @@ namespace OpenSim.Framework.Servers | |||
1020 | protected void Notice(string format, params object[] components) | 1020 | protected void Notice(string format, params object[] components) |
1021 | { | 1021 | { |
1022 | if (m_console != null) | 1022 | if (m_console != null) |
1023 | m_console.Output(format, null, components); | 1023 | m_console.Output(format, components); |
1024 | } | 1024 | } |
1025 | 1025 | ||
1026 | public virtual void Shutdown() | 1026 | public virtual void Shutdown() |