diff options
author | Sean Dague | 2008-05-15 18:42:27 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-15 18:42:27 +0000 |
commit | 4ff4475d02a26805749897bc62feddcc21b1c5da (patch) | |
tree | 0507ff54842f641d6f0e2664d02ac81e67190a97 /OpenSim/Data/SQLite | |
parent | add the rest of my UserAppearance created methods to (diff) | |
download | opensim-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/SQLite')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteUserData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteUserData.cs b/OpenSim/Data/SQLite/SQLiteUserData.cs index aa7a849..e80a0a9 100644 --- a/OpenSim/Data/SQLite/SQLiteUserData.cs +++ b/OpenSim/Data/SQLite/SQLiteUserData.cs | |||
@@ -480,12 +480,12 @@ namespace OpenSim.Data.SQLite | |||
480 | 480 | ||
481 | /// Appearance | 481 | /// Appearance |
482 | /// TODO: stubs for now to get us to a compiling state gently | 482 | /// TODO: stubs for now to get us to a compiling state gently |
483 | override public UserAppearance GetUserAppearance(LLUUID user) | 483 | override public AvatarAppearance GetUserAppearance(LLUUID user) |
484 | { | 484 | { |
485 | return new UserAppearance(); | 485 | return new AvatarAppearance(); |
486 | } | 486 | } |
487 | 487 | ||
488 | override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance) | 488 | override public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance) |
489 | { | 489 | { |
490 | return; | 490 | return; |
491 | } | 491 | } |