From 67e12b95ea7b68f4904a7484d77ecfd787d16d0c Mon Sep 17 00:00:00 2001
From: lbsa71
Date: Tue, 30 Oct 2007 09:05:31 +0000
Subject: * Optimized usings * Shortened type references * Removed redundant
'this' qualifier
---
OpenSim/Framework/Data.DB4o/DB4oGridData.cs | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
(limited to 'OpenSim/Framework/Data.DB4o/DB4oGridData.cs')
diff --git a/OpenSim/Framework/Data.DB4o/DB4oGridData.cs b/OpenSim/Framework/Data.DB4o/DB4oGridData.cs
index bc7225a..a96d9bd 100644
--- a/OpenSim/Framework/Data.DB4o/DB4oGridData.cs
+++ b/OpenSim/Framework/Data.DB4o/DB4oGridData.cs
@@ -34,18 +34,19 @@ namespace OpenSim.Framework.Data.DB4o
///
/// A grid server storage mechanism employing the DB4o database system
///
- class DB4oGridData : IGridData
+ internal class DB4oGridData : IGridData
{
///
/// The database manager object
///
- DB4oGridManager manager;
+ private DB4oGridManager manager;
///
/// Called when the plugin is first loaded (as constructors are not called)
///
- public void Initialise() {
- manager = new DB4oGridManager("gridserver.yap");
+ public void Initialise()
+ {
+ manager = new DB4oGridManager("gridserver.yap");
}
///
@@ -93,7 +94,8 @@ namespace OpenSim.Framework.Data.DB4o
if (manager.simProfiles.ContainsKey(uuid))
return manager.simProfiles[uuid];
}
- throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() + "). Total Registered Regions: " + manager.simProfiles.Count);
+ throw new Exception("Unable to find profile with UUID (" + uuid.ToStringHyphenated() +
+ "). Total Registered Regions: " + manager.simProfiles.Count);
}
///
@@ -123,7 +125,8 @@ namespace OpenSim.Framework.Data.DB4o
/// The location the region is logging into (unused in Db4o)
/// The shared secret
/// Authenticated?
- public bool AuthenticateSim(LLUUID uuid, ulong handle, string key) {
+ public bool AuthenticateSim(LLUUID uuid, ulong handle, string key)
+ {
if (manager.simProfiles[uuid].regionRecvKey == key)
return true;
return false;
@@ -160,4 +163,4 @@ namespace OpenSim.Framework.Data.DB4o
return null;
}
}
-}
+}
\ No newline at end of file
--
cgit v1.1