mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 19:35:41 +08:00
make the super class conveniance appearance stuff virtual
so they can be overrided correctly by subclasses
This commit is contained in:
@@ -656,7 +656,7 @@ namespace OpenSim.Data.MySQL
|
||||
/// Appearance
|
||||
/// TODO: stubs for now to get us to a compiling state gently
|
||||
// override
|
||||
public AvatarAppearance GetUserAppearance(LLUUID user)
|
||||
override public AvatarAppearance GetUserAppearance(LLUUID user)
|
||||
{
|
||||
AvatarAppearance appearance = null;
|
||||
if (!m_appearanceMapper.TryGetValue(user.UUID, out appearance))
|
||||
@@ -667,7 +667,7 @@ namespace OpenSim.Data.MySQL
|
||||
}
|
||||
|
||||
// override
|
||||
public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
|
||||
override public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
|
||||
{
|
||||
m_appearanceMapper.Update(user.UUID, appearance);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user