mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
remove some more useless NULL arguments
This commit is contained in:
@@ -256,13 +256,13 @@ namespace OpenSim.Region.OptionalModules.PhysicsParameters
|
||||
private void WriteOut(string msg, params object[] args)
|
||||
{
|
||||
// m_log.InfoFormat(msg, args);
|
||||
MainConsole.Instance.Output(msg, null, args);
|
||||
MainConsole.Instance.Output(msg, args);
|
||||
}
|
||||
|
||||
private void WriteError(string msg, params object[] args)
|
||||
{
|
||||
// m_log.ErrorFormat(msg, args);
|
||||
MainConsole.Instance.Output(msg, null, args);
|
||||
MainConsole.Instance.Output(msg, args);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user