aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLUserData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserData.cs b/OpenSim/Data/MySQL/MySQLUserData.cs
index cd5ac39..f7d5659 100644
--- a/OpenSim/Data/MySQL/MySQLUserData.cs
+++ b/OpenSim/Data/MySQL/MySQLUserData.cs
@@ -656,7 +656,7 @@ namespace OpenSim.Data.MySQL
656 /// Appearance 656 /// Appearance
657 /// TODO: stubs for now to get us to a compiling state gently 657 /// TODO: stubs for now to get us to a compiling state gently
658 // override 658 // override
659 public AvatarAppearance GetUserAppearance(LLUUID user) 659 override public AvatarAppearance GetUserAppearance(LLUUID user)
660 { 660 {
661 AvatarAppearance appearance = null; 661 AvatarAppearance appearance = null;
662 if (!m_appearanceMapper.TryGetValue(user.UUID, out appearance)) 662 if (!m_appearanceMapper.TryGetValue(user.UUID, out appearance))
@@ -667,7 +667,7 @@ namespace OpenSim.Data.MySQL
667 } 667 }
668 668
669 // override 669 // override
670 public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance) 670 override public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
671 { 671 {
672 m_appearanceMapper.Update(user.UUID, appearance); 672 m_appearanceMapper.Update(user.UUID, appearance);
673 } 673 }