* Reduced a significant number of compiler warnings (back down to 9 for all projects combined, all 'never used' things)

This commit is contained in:
Adam Frisby
2007-07-24 03:59:32 +00:00
parent 87bddd32df
commit 3cbc1e011d
9 changed files with 12 additions and 14 deletions

View File

@@ -54,12 +54,12 @@ namespace OpenSim.Physics.Manager
if(_plugins.ContainsKey(engineName))
{
MainLog.Instance.WriteLine(LogPriority.LOW,"creating "+engineName);
MainLog.Instance.Verbose("PHYSICS","creating "+engineName);
return _plugins[engineName].GetScene();
}
else
{
MainLog.Instance.WriteLine(LogPriority.MEDIUM,"couldn't find physicsEngine: {0}",engineName);
MainLog.Instance.Warn("PHYSICS", "couldn't find physicsEngine: {0}", engineName);
throw new ArgumentException(String.Format("couldn't find physicsEngine: {0}",engineName));
}
}