From b1853d9f265fb32cf51d65fdcf2d5b4741911f00 Mon Sep 17 00:00:00 2001
From: Kunnis
Date: Sun, 16 Aug 2009 23:25:12 -0500
Subject: Fixing a spot I missed in assets. Switching Grid to the new naming
schema with Store/Get
---
OpenSim/Data/MySQL/MySQLGridData.cs | 13 +------------
1 file changed, 1 insertion(+), 12 deletions(-)
(limited to 'OpenSim/Data/MySQL/MySQLGridData.cs')
diff --git a/OpenSim/Data/MySQL/MySQLGridData.cs b/OpenSim/Data/MySQL/MySQLGridData.cs
index 0a5800b..1ec2609 100644
--- a/OpenSim/Data/MySQL/MySQLGridData.cs
+++ b/OpenSim/Data/MySQL/MySQLGridData.cs
@@ -391,7 +391,7 @@ namespace OpenSim.Data.MySQL
///
/// The profile to add
/// Successful?
- override public DataResponse AddProfile(RegionProfileData profile)
+ override public DataResponse StoreProfile(RegionProfileData profile)
{
MySQLSuperManager dbm = GetLockedConnection();
try {
@@ -408,17 +408,6 @@ namespace OpenSim.Data.MySQL
}
///
- /// Update a sim profile
- ///
- /// The profile to update
- /// Sucessful?
- /// Same as AddProfile
- override public DataResponse UpdateProfile(RegionProfileData profile)
- {
- return AddProfile(profile);
- }
-
- ///
/// Deletes a sim profile from the database
///
/// the sim UUID
--
cgit v1.1