mirror of
https://github.com/opensim/opensim.git
synced 2026-06-19 03:36:18 +08:00
added stubs for appearance bits to all the db layers
This commit is contained in:
@@ -628,6 +628,33 @@ namespace OpenSim.Data.MySQL
|
||||
return false;
|
||||
}
|
||||
|
||||
/// Appearance
|
||||
/// TODO: stubs for now to get us to a compiling state gently
|
||||
override public UserAppearance GetUserAppearance(LLUUID user)
|
||||
{
|
||||
return new UserAppearance();
|
||||
}
|
||||
|
||||
override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
override public void AddAttachment(LLUUID user, LLUUID item)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
override public void RemoveAttachment(LLUUID user, LLUUID item)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
override public List<LLUUID> GetAttachments(LLUUID user)
|
||||
{
|
||||
return new List<LLUUID>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Database provider name
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user