From 67e12b95ea7b68f4904a7484d77ecfd787d16d0c Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 30 Oct 2007 09:05:31 +0000 Subject: * Optimized usings * Shortened type references * Removed redundant 'this' qualifier --- OpenSim/Grid/ScriptServer/ScriptServerMain.cs | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'OpenSim/Grid/ScriptServer/ScriptServerMain.cs') 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 @@ * */ -using System; -using System.Collections.Generic; -using System.Text; using System.IO; -using OpenSim.Framework.Console; using OpenSim.Framework; +using OpenSim.Framework.Console; namespace OpenSim.Grid.ScriptServer { public class ScriptServerMain : conscmd_callback { private readonly string m_logFilename = ("region-console.log"); - internal RegionCommManager RegionScriptDaemon; // Listen for incoming from region - internal ScriptEngineManager ScriptEngines; // Loads scriptengines + internal RegionCommManager RegionScriptDaemon; // Listen for incoming from region + internal ScriptEngineManager ScriptEngines; // Loads scriptengines private LogBase m_log; public ScriptServerMain() @@ -48,7 +45,6 @@ namespace OpenSim.Grid.ScriptServer RegionScriptDaemon = new RegionCommManager(this, m_log); ScriptEngines = new ScriptEngineManager(this, m_log); - } ~ScriptServerMain() @@ -68,9 +64,9 @@ namespace OpenSim.Grid.ScriptServer public void RunCmd(string command, string[] cmdparams) { } + public void Show(string ShowWhat) { } - } -} +} \ No newline at end of file -- cgit v1.1