From 8462c8c4974060ceb83e63e39963c98327c4f537 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 26 Aug 2008 18:44:34 +0000 Subject: [PATCH] * Eliminate commented out code no longer needed, as discussed on the ml --- .../InterGrid/OpenGridProtocolModule.cs | 31 +------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs b/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs index 89a01f0d29..ce3c62f383 100644 --- a/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs +++ b/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs @@ -24,6 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ + using System; using System.Collections; using System.Collections.Generic; @@ -746,36 +747,6 @@ namespace OpenSim.Region.Environment.Modules.InterGrid return Util.UIntsToLong(reg.RegionLocX, reg.RegionLocY); } -// private ulong GetOSCompatibleRegionHandle(uint x, uint y) -// { -// return Util.UIntsToLong(x, y); -// } - -// private ulong GetOSCompatibleRegionHandle(ulong regionhandle) -// { -// uint x,y; -// Helpers.LongToUInts(regionhandle,out x, out y); -// return GetOSCompatibleRegionHandle(x,y); -// } - - -// private ulong GetOGPCompatibleRegionHandle(RegionInfo reg) -// { -// return Util.UIntsToLong((reg.RegionLocX * (uint)Constants.RegionSize), (reg.RegionLocY * (uint)Constants.RegionSize)); -// } - -// private ulong GetOGPCompatibleRegionHandle(uint x, uint y) -// { -// return Util.UIntsToLong((x * (uint)Constants.RegionSize), (y * (uint)Constants.RegionSize)); -// } - -// private ulong GetOGPCompatibleRegionHandle(ulong regionhandle) -// { -// uint x, y; -// Helpers.LongToUInts(regionhandle, out x, out y); -// return GetOGPCompatibleRegionHandle(x, y); -// } - private OGPState InitializeNewState() { OGPState returnState = new OGPState();