Quell three new warnings I introduced with AgentPrefsData, return an empty llsd map instead of an empty llsd block when no AgentPrefs service is available to try and appease Firestorm

Signed-off-by: Diva Canto <diva@metaverseink.com>
This commit is contained in:
Cinder
2015-06-14 08:45:22 -06:00
committed by Diva Canto
parent 54c1659934
commit 3853904b80
4 changed files with 8 additions and 8 deletions

View File

@@ -52,9 +52,9 @@ namespace OpenSim.Data.MySQL
return ret[0];
}
public void Store(AgentPreferencesData data)
public override bool Store(AgentPreferencesData data)
{
base.Store(data);
return base.Store(data);
}
}
}