diff options
author | lbsa71 | 2007-10-30 09:05:31 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-30 09:05:31 +0000 |
commit | 67e12b95ea7b68f4904a7484d77ecfd787d16d0c (patch) | |
tree | 20b00d24c8a7617017960432ec044852e3ad5fa9 /OpenSim/Grid/ScriptServer/ScriptServerMain.cs | |
parent | * Deleted .user file (diff) | |
download | opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.zip opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.gz opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.bz2 opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.xz |
* Optimized usings
* Shortened type references
* Removed redundant 'this' qualifier
Diffstat (limited to 'OpenSim/Grid/ScriptServer/ScriptServerMain.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/ScriptServerMain.cs | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs index 82035ac..1749376 100644 --- a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs +++ b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs | |||
@@ -26,20 +26,17 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using System.IO; | 29 | using System.IO; |
33 | using OpenSim.Framework.Console; | ||
34 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Framework.Console; | ||
35 | 32 | ||
36 | namespace OpenSim.Grid.ScriptServer | 33 | namespace OpenSim.Grid.ScriptServer |
37 | { | 34 | { |
38 | public class ScriptServerMain : conscmd_callback | 35 | public class ScriptServerMain : conscmd_callback |
39 | { | 36 | { |
40 | private readonly string m_logFilename = ("region-console.log"); | 37 | private readonly string m_logFilename = ("region-console.log"); |
41 | internal RegionCommManager RegionScriptDaemon; // Listen for incoming from region | 38 | internal RegionCommManager RegionScriptDaemon; // Listen for incoming from region |
42 | internal ScriptEngineManager ScriptEngines; // Loads scriptengines | 39 | internal ScriptEngineManager ScriptEngines; // Loads scriptengines |
43 | private LogBase m_log; | 40 | private LogBase m_log; |
44 | 41 | ||
45 | public ScriptServerMain() | 42 | public ScriptServerMain() |
@@ -48,7 +45,6 @@ namespace OpenSim.Grid.ScriptServer | |||
48 | 45 | ||
49 | RegionScriptDaemon = new RegionCommManager(this, m_log); | 46 | RegionScriptDaemon = new RegionCommManager(this, m_log); |
50 | ScriptEngines = new ScriptEngineManager(this, m_log); | 47 | ScriptEngines = new ScriptEngineManager(this, m_log); |
51 | |||
52 | } | 48 | } |
53 | 49 | ||
54 | ~ScriptServerMain() | 50 | ~ScriptServerMain() |
@@ -68,9 +64,9 @@ namespace OpenSim.Grid.ScriptServer | |||
68 | public void RunCmd(string command, string[] cmdparams) | 64 | public void RunCmd(string command, string[] cmdparams) |
69 | { | 65 | { |
70 | } | 66 | } |
67 | |||
71 | public void Show(string ShowWhat) | 68 | public void Show(string ShowWhat) |
72 | { | 69 | { |
73 | } | 70 | } |
74 | |||
75 | } | 71 | } |
76 | } | 72 | } \ No newline at end of file |