mirror of
https://github.com/opensim/opensim.git
synced 2026-08-03 15:36:16 +08:00
* Removed redundant code in RestService.cs
* Removed unchecked TryParse, replaced with Parse as we were not checking for success and could lead to weirdness if an exception is ignored.
* Removed unused variable m_newAvatar
* Removed several unused try{}catch(Exception e){}'s.
* Added null assignment in simpleapp to prevent warning.
This commit is contained in:
@@ -46,7 +46,7 @@ namespace SimpleApp
|
||||
internal class Program : RegionApplicationBase, conscmd_callback
|
||||
{
|
||||
private ModuleLoader m_moduleLoader;
|
||||
private IConfigSource m_config;
|
||||
private IConfigSource m_config = null;
|
||||
|
||||
private string m_userPlugin = "OpenSim.Framework.Data.SQLite.dll";
|
||||
private string m_inventoryPlugin = "OpenSim.Framework.Data.SQLite.dll";
|
||||
|
||||
Reference in New Issue
Block a user