diff options
author | Cinder | 2015-06-14 08:45:22 -0600 |
---|---|---|
committer | Diva Canto | 2015-06-14 07:59:25 -0700 |
commit | 3853904b80c659ae94db780f4de713d639200e50 (patch) | |
tree | 04434a4586bf7de629ed8eebd1f26d7b6f770c9d /OpenSim/Data/PGSQL | |
parent | AgentPreferences SQLLite Migration update Mantis #7157 (diff) | |
download | opensim-SC-3853904b80c659ae94db780f4de713d639200e50.zip opensim-SC-3853904b80c659ae94db780f4de713d639200e50.tar.gz opensim-SC-3853904b80c659ae94db780f4de713d639200e50.tar.bz2 opensim-SC-3853904b80c659ae94db780f4de713d639200e50.tar.xz |
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>
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs index c27087d..4c84724 100644 --- a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs | |||
@@ -52,9 +52,9 @@ namespace OpenSim.Data.PGSQL | |||
52 | return ret[0]; | 52 | return ret[0]; |
53 | } | 53 | } |
54 | 54 | ||
55 | public void Store(AgentPreferencesData data) | 55 | public override bool Store(AgentPreferencesData data) |
56 | { | 56 | { |
57 | base.Store(data); | 57 | return base.Store(data); |
58 | } | 58 | } |
59 | } | 59 | } |
60 | } | 60 | } |