aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL
diff options
context:
space:
mode:
authorSean Dague2008-05-15 18:42:27 +0000
committerSean Dague2008-05-15 18:42:27 +0000
commit4ff4475d02a26805749897bc62feddcc21b1c5da (patch)
tree0507ff54842f641d6f0e2664d02ac81e67190a97 /OpenSim/Data/MySQL
parentadd the rest of my UserAppearance created methods to (diff)
downloadopensim-SC_OLD-4ff4475d02a26805749897bc62feddcc21b1c5da.zip
opensim-SC_OLD-4ff4475d02a26805749897bc62feddcc21b1c5da.tar.gz
opensim-SC_OLD-4ff4475d02a26805749897bc62feddcc21b1c5da.tar.bz2
opensim-SC_OLD-4ff4475d02a26805749897bc62feddcc21b1c5da.tar.xz
remove my UserAppearance object, switch all code to use
AvatarAppearance instead.
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserData.cs6
1 files changed, 3 insertions, 3 deletions
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
630 630
631 /// Appearance 631 /// Appearance
632 /// TODO: stubs for now to get us to a compiling state gently 632 /// TODO: stubs for now to get us to a compiling state gently
633 override public UserAppearance GetUserAppearance(LLUUID user) 633 override public AvatarAppearance GetUserAppearance(LLUUID user)
634 { 634 {
635 return new UserAppearance(); 635 return new AvatarAppearance();
636 } 636 }
637 637
638 override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance) 638 override public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
639 { 639 {
640 return; 640 return;
641 } 641 }