Minor cleanup

This commit is contained in:
Jeff Ames
2007-12-13 18:45:32 +00:00
parent 1cf4278862
commit 8d995a5a5d
10 changed files with 27 additions and 42 deletions

View File

@@ -158,6 +158,7 @@ namespace OpenSim.Framework.Data.MySQL
return null;
}
}
public List<OpenSim.Framework.AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query)
{
List<OpenSim.Framework.AvatarPickerAvatar> returnlist = new List<OpenSim.Framework.AvatarPickerAvatar>();
@@ -242,6 +243,7 @@ namespace OpenSim.Framework.Data.MySQL
}
return returnlist;
}
/// <summary>
/// Searches the database for a specified user profile by UUID
/// </summary>
@@ -366,11 +368,14 @@ namespace OpenSim.Framework.Data.MySQL
// Do nothing.
}
/// <summary>
/// Updates a user profile stored in the DB
/// </summary>
/// <param name="user">The profile data to use to update the DB</param>
public bool UpdateUserProfile(UserProfileData user)
{
return true;
// TODO: implement
return true;
}
/// <summary>