diff options
author | Adam Frisby | 2007-12-18 08:41:23 +0000 |
---|---|---|
committer | Adam Frisby | 2007-12-18 08:41:23 +0000 |
commit | 7948033565a106395eb10ae3e169c9c4fa6cbdba (patch) | |
tree | e56441fb7d8544932fd3b1763f636852b1e868ae /OpenSim/Region/Examples | |
parent | * Renamed AgentWearable to AvatarWearable (diff) | |
download | opensim-SC_OLD-7948033565a106395eb10ae3e169c9c4fa6cbdba.zip opensim-SC_OLD-7948033565a106395eb10ae3e169c9c4fa6cbdba.tar.gz opensim-SC_OLD-7948033565a106395eb10ae3e169c9c4fa6cbdba.tar.bz2 opensim-SC_OLD-7948033565a106395eb10ae3e169c9c4fa6cbdba.tar.xz |
* 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.
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs index a86946e..02108d0 100644 --- a/OpenSim/Region/Examples/SimpleApp/Program.cs +++ b/OpenSim/Region/Examples/SimpleApp/Program.cs | |||
@@ -46,7 +46,7 @@ namespace SimpleApp | |||
46 | internal class Program : RegionApplicationBase, conscmd_callback | 46 | internal class Program : RegionApplicationBase, conscmd_callback |
47 | { | 47 | { |
48 | private ModuleLoader m_moduleLoader; | 48 | private ModuleLoader m_moduleLoader; |
49 | private IConfigSource m_config; | 49 | private IConfigSource m_config = null; |
50 | 50 | ||
51 | private string m_userPlugin = "OpenSim.Framework.Data.SQLite.dll"; | 51 | private string m_userPlugin = "OpenSim.Framework.Data.SQLite.dll"; |
52 | private string m_inventoryPlugin = "OpenSim.Framework.Data.SQLite.dll"; | 52 | private string m_inventoryPlugin = "OpenSim.Framework.Data.SQLite.dll"; |