aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Hypergrid
diff options
context:
space:
mode:
authorlbsa712009-02-12 09:53:12 +0000
committerlbsa712009-02-12 09:53:12 +0000
commit801da4346aeb3c08969c4845f5c595135a64470a (patch)
tree2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Region/CoreModules/Hypergrid
parentThanks Kitto Flora for a patch that adds automatic min fly height to ODE - Ma... (diff)
downloadopensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.zip
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.gz
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.bz2
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.xz
* optimized usings.
Diffstat (limited to 'OpenSim/Region/CoreModules/Hypergrid')
-rw-r--r--OpenSim/Region/CoreModules/Hypergrid/HGStandaloneAssetService.cs32
-rw-r--r--OpenSim/Region/CoreModules/Hypergrid/HGStandaloneInventoryService.cs26
-rw-r--r--OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs40
3 files changed, 35 insertions, 63 deletions
diff --git a/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneAssetService.cs b/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneAssetService.cs
index 13efe6b..095c837 100644
--- a/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneAssetService.cs
+++ b/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneAssetService.cs
@@ -26,25 +26,19 @@
26 * 26 *
27 */ 27 */
28 28
29using System; 29using System.Reflection;
30using System.Collections.Generic; 30using log4net;
31using System.Net; 31using Nini.Config;
32using System.Reflection; 32using OpenMetaverse;
33 33using OpenSim.Data;
34using log4net; 34using OpenSim.Framework;
35using Nini.Config; 35using OpenSim.Framework.Communications;
36 36using OpenSim.Framework.Communications.Cache;
37using OpenMetaverse; 37using OpenSim.Framework.Servers;
38 38using OpenSim.Grid.AssetServer;
39using OpenSim.Framework; 39using OpenSim.Region.Framework.Interfaces;
40using OpenSim.Framework.Communications; 40using OpenSim.Region.Framework.Scenes;
41using OpenSim.Framework.Communications.Cache; 41
42using OpenSim.Framework.Servers;
43using OpenSim.Region.Framework.Interfaces;
44using OpenSim.Region.Framework.Scenes;
45using OpenSim.Grid.AssetServer;
46using OpenSim.Data;
47
48namespace OpenSim.Region.CoreModules.Hypergrid 42namespace OpenSim.Region.CoreModules.Hypergrid
49{ 43{
50 public class HGStandaloneAssetService : IRegionModule 44 public class HGStandaloneAssetService : IRegionModule
diff --git a/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneInventoryService.cs b/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneInventoryService.cs
index dfc859e..bf88878 100644
--- a/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneInventoryService.cs
+++ b/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneInventoryService.cs
@@ -26,20 +26,18 @@
26 * 26 *
27 */ 27 */
28 28
29using System; 29using System;
30using System.Collections.Generic; 30using System.Collections.Generic;
31using System.Net; 31using System.Reflection;
32using System.Reflection; 32using log4net;
33using log4net; 33using Nini.Config;
34using Nini.Config; 34using OpenMetaverse;
35using OpenMetaverse; 35using OpenSim.Framework;
36using OpenSim.Framework; 36using OpenSim.Framework.Communications;
37using OpenSim.Framework.Communications; 37using OpenSim.Framework.Servers;
38using OpenSim.Framework.Communications.Cache; 38using OpenSim.Region.Framework.Interfaces;
39using OpenSim.Framework.Servers; 39using OpenSim.Region.Framework.Scenes;
40using OpenSim.Region.Framework.Interfaces; 40
41using OpenSim.Region.Framework.Scenes;
42
43namespace OpenSim.Region.CoreModules.Hypergrid 41namespace OpenSim.Region.CoreModules.Hypergrid
44{ 42{
45 public class HGStandaloneInventoryService : IRegionModule 43 public class HGStandaloneInventoryService : IRegionModule
diff --git a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs
index 5540cc3..6c06fb1 100644
--- a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs
+++ b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs
@@ -27,36 +27,16 @@
27 */ 27 */
28 28
29 29
30using System; 30using System.Collections.Generic;
31using System.Collections; 31using System.Reflection;
32using System.Collections.Generic; 32using log4net;
33using System.Drawing; 33using Nini.Config;
34using System.Drawing.Imaging; 34using OpenMetaverse;
35using System.IO; 35using OpenSim.Framework;
36using System.Net; 36using OpenSim.Region.CoreModules.World.WorldMap;
37using System.Reflection; 37using OpenSim.Region.Framework.Interfaces;
38using System.Threading; 38using OpenSim.Region.Framework.Scenes;
39using OpenMetaverse; 39
40using OpenMetaverse.Imaging;
41using OpenMetaverse.StructuredData;
42using log4net;
43using Nini.Config;
44using Nwc.XmlRpc;
45
46using OpenSim.Framework;
47using OpenSim.Framework.Communications.Cache;
48using OpenSim.Framework.Communications.Capabilities;
49using OpenSim.Framework.Servers;
50using OpenSim.Region.Framework.Interfaces;
51using OpenSim.Region.Framework.Scenes;
52using OpenSim.Region.Framework.Scenes.Types;
53using OpenSim.Region.CoreModules.World.WorldMap;
54using Caps = OpenSim.Framework.Communications.Capabilities.Caps;
55
56using OSD = OpenMetaverse.StructuredData.OSD;
57using OSDMap = OpenMetaverse.StructuredData.OSDMap;
58using OSDArray = OpenMetaverse.StructuredData.OSDArray;
59
60namespace OpenSim.Region.CoreModules.Hypergrid 40namespace OpenSim.Region.CoreModules.Hypergrid
61{ 41{
62 public class HGWorldMapModule : WorldMapModule, IRegionModule 42 public class HGWorldMapModule : WorldMapModule, IRegionModule