* Eliminate commented out code no longer needed, as discussed on the ml

0.6.0-stable
Justin Clarke Casey 2008-08-26 18:44:34 +00:00
parent f0448e299d
commit 8462c8c497
1 changed files with 1 additions and 30 deletions

View File

@ -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();