diff options
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLUserData.cs | 11 | ||||
-rw-r--r-- | OpenSim/Data/MySQL/MySQLUserData.cs | 5 | ||||
-rw-r--r-- | OpenSim/Data/NHibernate/NHibernateUserData.cs | 1 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteUserData.cs | 12 | ||||
-rw-r--r-- | OpenSim/Data/UserDataBase.cs | 1 |
5 files changed, 0 insertions, 30 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLUserData.cs b/OpenSim/Data/MSSQL/MSSQLUserData.cs index 5185659..69fd862 100644 --- a/OpenSim/Data/MSSQL/MSSQLUserData.cs +++ b/OpenSim/Data/MSSQL/MSSQLUserData.cs | |||
@@ -741,17 +741,6 @@ namespace OpenSim.Data.MSSQL | |||
741 | #region Other public methods | 741 | #region Other public methods |
742 | 742 | ||
743 | /// <summary> | 743 | /// <summary> |
744 | /// STUB ! Update current region | ||
745 | /// </summary> | ||
746 | /// <param name="avatarid">avatar uuid</param> | ||
747 | /// <param name="regionuuid">region uuid</param> | ||
748 | /// <param name="regionhandle">region handle</param> | ||
749 | override public void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle) | ||
750 | { | ||
751 | //m_log.Info("[USER]: Stub UpdateUserCUrrentRegion called"); | ||
752 | } | ||
753 | |||
754 | /// <summary> | ||
755 | /// | 744 | /// |
756 | /// </summary> | 745 | /// </summary> |
757 | /// <param name="queryID"></param> | 746 | /// <param name="queryID"></param> |
diff --git a/OpenSim/Data/MySQL/MySQLUserData.cs b/OpenSim/Data/MySQL/MySQLUserData.cs index f203a66..14d178b 100644 --- a/OpenSim/Data/MySQL/MySQLUserData.cs +++ b/OpenSim/Data/MySQL/MySQLUserData.cs | |||
@@ -409,11 +409,6 @@ namespace OpenSim.Data.MySQL | |||
409 | 409 | ||
410 | #endregion | 410 | #endregion |
411 | 411 | ||
412 | public override void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle) | ||
413 | { | ||
414 | //m_log.Info("[USER DB]: Stub UpdateUserCUrrentRegion called"); | ||
415 | } | ||
416 | |||
417 | public override List<AvatarPickerAvatar> GeneratePickerResults(UUID queryID, string query) | 412 | public override List<AvatarPickerAvatar> GeneratePickerResults(UUID queryID, string query) |
418 | { | 413 | { |
419 | List<AvatarPickerAvatar> returnlist = new List<AvatarPickerAvatar>(); | 414 | List<AvatarPickerAvatar> returnlist = new List<AvatarPickerAvatar>(); |
diff --git a/OpenSim/Data/NHibernate/NHibernateUserData.cs b/OpenSim/Data/NHibernate/NHibernateUserData.cs index 1bb2b14..3a22dc3 100644 --- a/OpenSim/Data/NHibernate/NHibernateUserData.cs +++ b/OpenSim/Data/NHibernate/NHibernateUserData.cs | |||
@@ -249,7 +249,6 @@ namespace OpenSim.Data.NHibernate | |||
249 | } | 249 | } |
250 | 250 | ||
251 | // TODO: actually implement these | 251 | // TODO: actually implement these |
252 | public override void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle) { return; } | ||
253 | public override void StoreWebLoginKey(UUID agentID, UUID webLoginKey) { return; } | 252 | public override void StoreWebLoginKey(UUID agentID, UUID webLoginKey) { return; } |
254 | public override void AddNewUserFriend(UUID friendlistowner, UUID friend, uint perms) { return; } | 253 | public override void AddNewUserFriend(UUID friendlistowner, UUID friend, uint perms) { return; } |
255 | public override void RemoveUserFriend(UUID friendlistowner, UUID friend) { return; } | 254 | public override void RemoveUserFriend(UUID friendlistowner, UUID friend) { return; } |
diff --git a/OpenSim/Data/SQLite/SQLiteUserData.cs b/OpenSim/Data/SQLite/SQLiteUserData.cs index b8f1a68..ebc58c1 100644 --- a/OpenSim/Data/SQLite/SQLiteUserData.cs +++ b/OpenSim/Data/SQLite/SQLiteUserData.cs | |||
@@ -358,18 +358,6 @@ namespace OpenSim.Data.SQLite | |||
358 | #endregion | 358 | #endregion |
359 | 359 | ||
360 | /// <summary> | 360 | /// <summary> |
361 | /// STUB, Update the user's current region | ||
362 | /// </summary> | ||
363 | /// <param name="avatarid">UUID of the user</param> | ||
364 | /// <param name="regionuuid">UUID of the region</param> | ||
365 | /// <param name="regionhandle">region handle</param> | ||
366 | /// <remarks>DO NOTHING</remarks> | ||
367 | override public void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle) | ||
368 | { | ||
369 | //m_log.Info("[USER DB]: Stub UpdateUserCUrrentRegion called"); | ||
370 | } | ||
371 | |||
372 | /// <summary> | ||
373 | /// | 361 | /// |
374 | /// </summary> | 362 | /// </summary> |
375 | /// <param name="queryID"></param> | 363 | /// <param name="queryID"></param> |
diff --git a/OpenSim/Data/UserDataBase.cs b/OpenSim/Data/UserDataBase.cs index c1b320b..eaad7ae 100644 --- a/OpenSim/Data/UserDataBase.cs +++ b/OpenSim/Data/UserDataBase.cs | |||
@@ -47,7 +47,6 @@ namespace OpenSim.Data | |||
47 | public abstract void StoreWebLoginKey(UUID agentID, UUID webLoginKey); | 47 | public abstract void StoreWebLoginKey(UUID agentID, UUID webLoginKey); |
48 | public abstract void AddNewUserProfile(UserProfileData user); | 48 | public abstract void AddNewUserProfile(UserProfileData user); |
49 | public abstract bool UpdateUserProfile(UserProfileData user); | 49 | public abstract bool UpdateUserProfile(UserProfileData user); |
50 | public abstract void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle); | ||
51 | public abstract void AddNewUserAgent(UserAgentData agent); | 50 | public abstract void AddNewUserAgent(UserAgentData agent); |
52 | public abstract void AddNewUserFriend(UUID friendlistowner, UUID friend, uint perms); | 51 | public abstract void AddNewUserFriend(UUID friendlistowner, UUID friend, uint perms); |
53 | public abstract void RemoveUserFriend(UUID friendlistowner, UUID friend); | 52 | public abstract void RemoveUserFriend(UUID friendlistowner, UUID friend); |