remove my UserAppearance object, switch all code to use

AvatarAppearance instead.
This commit is contained in:
Sean Dague
2008-05-15 18:42:27 +00:00
parent c45218e275
commit 4ff4475d02
10 changed files with 27 additions and 255 deletions

View File

@@ -630,12 +630,12 @@ namespace OpenSim.Data.MySQL
/// Appearance
/// TODO: stubs for now to get us to a compiling state gently
override public UserAppearance GetUserAppearance(LLUUID user)
override public AvatarAppearance GetUserAppearance(LLUUID user)
{
return new UserAppearance();
return new AvatarAppearance();
}
override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance)
override public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
{
return;
}