From 801da4346aeb3c08969c4845f5c595135a64470a Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Thu, 12 Feb 2009 09:53:12 +0000 Subject: * optimized usings. --- OpenSim/Framework/Console/ConsoleBase.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'OpenSim/Framework/Console') diff --git a/OpenSim/Framework/Console/ConsoleBase.cs b/OpenSim/Framework/Console/ConsoleBase.cs index 721e91a..793270b 100644 --- a/OpenSim/Framework/Console/ConsoleBase.cs +++ b/OpenSim/Framework/Console/ConsoleBase.cs @@ -26,10 +26,11 @@ */ using System; -using System.Text; -using System.Reflection; -using System.Diagnostics; using System.Collections.Generic; +using System.Diagnostics; +using System.Reflection; +using System.Text; +using System.Threading; using log4net; namespace OpenSim.Framework.Console @@ -77,8 +78,8 @@ namespace OpenSim.Framework.Console /// /// Commands organized by keyword in a tree /// - private Dictionary tree = - new Dictionary(); + private Dictionary tree = + new Dictionary(); /// /// Get help for the given help string @@ -149,7 +150,7 @@ namespace OpenSim.Framework.Console return help; } - private List CollectHelp(Dictionary dict) + private List CollectHelp(Dictionary dict) { List result = new List(); @@ -708,7 +709,7 @@ namespace OpenSim.Framework.Console public void LockOutput() { - System.Threading.Monitor.Enter(cmdline); + Monitor.Enter(cmdline); try { if (y != -1) @@ -738,7 +739,7 @@ namespace OpenSim.Framework.Console y = System.Console.CursorTop; Show(); } - System.Threading.Monitor.Exit(cmdline); + Monitor.Exit(cmdline); } public void Output(string text) -- cgit v1.1