Apply updated patch from issue 1871. Thanks sempuki.

This commit is contained in:
Mike Mazur
2008-07-31 23:53:24 +00:00
parent 6d15f25026
commit 15669281fa
8 changed files with 35 additions and 34 deletions

View File

@@ -416,7 +416,7 @@ namespace OpenSim.Data.MSSQL
}
/// <summary>
/// See IUserData
/// See IUserDataPlugin
/// </summary>
/// <param name="uuid"></param>
/// <returns></returns>

View File

@@ -244,7 +244,7 @@ namespace OpenSim.Data.MySQL
#endregion
// see IUserData
// see IUserDataPlugin
override public UserProfileData GetUserByName(string user, string last)
{
try
@@ -508,7 +508,7 @@ namespace OpenSim.Data.MySQL
}
/// <summary>
/// See IUserData
/// See IUserDataPlugin
/// </summary>
/// <param name="uuid">User UUID</param>
/// <returns>User profile data</returns>

View File

@@ -133,7 +133,7 @@ namespace OpenSim.Data.SQLite
public override void Dispose () {}
/// <summary>
/// see IUserData,
/// see IUserDataPlugin,
/// Get user data profile by UUID
/// </summary>
/// <param name="uuid">User UUID</param>
@@ -161,7 +161,7 @@ namespace OpenSim.Data.SQLite
}
/// <summary>
/// see IUserData,
/// see IUserDataPlugin,
/// Get user data profile by name
/// </summary>
/// <param name="fname">first name</param>

View File

@@ -33,7 +33,7 @@ using OpenSim.Framework;
namespace OpenSim.Data
{
public abstract class UserDataBase : IUserData
public abstract class UserDataBase : IUserDataPlugin
{
// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);