From 3853904b80c659ae94db780f4de713d639200e50 Mon Sep 17 00:00:00 2001 From: Cinder Date: Sun, 14 Jun 2015 08:45:22 -0600 Subject: 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 --- OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Data/MySQL') diff --git a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs index bf188ee..6be205e 100644 --- a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs +++ b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs @@ -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); } } } -- cgit v1.1