From 4ff4475d02a26805749897bc62feddcc21b1c5da Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 15 May 2008 18:42:27 +0000 Subject: remove my UserAppearance object, switch all code to use AvatarAppearance instead. --- OpenSim/Data/MySQL/MySQLUserData.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Data/MySQL/MySQLUserData.cs') diff --git a/OpenSim/Data/MySQL/MySQLUserData.cs b/OpenSim/Data/MySQL/MySQLUserData.cs index ab34f15..622a618 100644 --- a/OpenSim/Data/MySQL/MySQLUserData.cs +++ b/OpenSim/Data/MySQL/MySQLUserData.cs @@ -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; } -- cgit v1.1