From efd90b56b761219af6425b1c7a2cdd3b6ffb4de2 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Thu, 27 Dec 2007 21:41:48 +0000 Subject: * Optimized usings * shortened references * Removed redundant 'this' * Normalized EOF --- OpenSim/Region/Environment/Interfaces/IAvatarFactory.cs | 1 - OpenSim/Region/Environment/Interfaces/IHttpRequests.cs | 2 +- OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 7 ++++--- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/Environment/Interfaces') diff --git a/OpenSim/Region/Environment/Interfaces/IAvatarFactory.cs b/OpenSim/Region/Environment/Interfaces/IAvatarFactory.cs index ee4d8bc..fb83150 100644 --- a/OpenSim/Region/Environment/Interfaces/IAvatarFactory.cs +++ b/OpenSim/Region/Environment/Interfaces/IAvatarFactory.cs @@ -27,7 +27,6 @@ */ using libsecondlife; -using OpenSim.Framework; using OpenSim.Region.Environment.Scenes; namespace OpenSim.Region.Environment.Interfaces diff --git a/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs b/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs index c974616..6aa8f35 100644 --- a/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs +++ b/OpenSim/Region/Environment/Interfaces/IHttpRequests.cs @@ -26,9 +26,9 @@ * */ +using System.Collections.Generic; using libsecondlife; using OpenSim.Region.Environment.Modules; -using System.Collections.Generic; namespace OpenSim.Region.Environment.Interfaces { diff --git a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs index 91aa5ff..78ad428 100644 --- a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs +++ b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs @@ -28,6 +28,7 @@ using System.Collections.Generic; using libsecondlife; +using OpenSim.Framework; using OpenSim.Region.Environment.LandManagement; using OpenSim.Region.Environment.Scenes; @@ -51,10 +52,10 @@ namespace OpenSim.Region.Environment.Interfaces void StoreTerrain(double[,] terrain, LLUUID regionID); double[,] LoadTerrain(LLUUID regionID); - void StoreLandObject(Land Parcel,LLUUID regionUUID); + void StoreLandObject(Land Parcel, LLUUID regionUUID); void RemoveLandObject(LLUUID globalID); - List LoadLandObjects(LLUUID regionUUID); + List LoadLandObjects(LLUUID regionUUID); void Shutdown(); } -} +} \ No newline at end of file -- cgit v1.1