diff options
author | Diva Canto | 2015-06-14 08:04:25 -0700 |
---|---|---|
committer | Diva Canto | 2015-06-14 08:04:25 -0700 |
commit | 496f35b4e85b2145138de0924add1c0be7be5320 (patch) | |
tree | 8bf52d18874b654cabf26fcde1e3fe016050c5ae | |
parent | Quell three new warnings I introduced with AgentPrefsData, return an empty ll... (diff) | |
download | opensim-SC-496f35b4e85b2145138de0924add1c0be7be5320.zip opensim-SC-496f35b4e85b2145138de0924add1c0be7be5320.tar.gz opensim-SC-496f35b4e85b2145138de0924add1c0be7be5320.tar.bz2 opensim-SC-496f35b4e85b2145138de0924add1c0be7be5320.tar.xz |
Removing the Store methods in the DB layer of AgentPreferences, as they were simply calling the base ones.
-rw-r--r-- | OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs | 5 | ||||
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs | 4 |
3 files changed, 0 insertions, 13 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs index 6be205e..ed0ab98 100644 --- a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs +++ b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs | |||
@@ -51,11 +51,6 @@ namespace OpenSim.Data.MySQL | |||
51 | 51 | ||
52 | return ret[0]; | 52 | return ret[0]; |
53 | } | 53 | } |
54 | |||
55 | public override bool Store(AgentPreferencesData data) | ||
56 | { | ||
57 | return base.Store(data); | ||
58 | } | ||
59 | } | 54 | } |
60 | } | 55 | } |
61 | 56 | ||
diff --git a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs index 4c84724..7f3cbee 100644 --- a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs | |||
@@ -52,9 +52,5 @@ namespace OpenSim.Data.PGSQL | |||
52 | return ret[0]; | 52 | return ret[0]; |
53 | } | 53 | } |
54 | 54 | ||
55 | public override bool Store(AgentPreferencesData data) | ||
56 | { | ||
57 | return base.Store(data); | ||
58 | } | ||
59 | } | 55 | } |
60 | } | 56 | } |
diff --git a/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs b/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs index 5bfcedb..d22393d 100644 --- a/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs +++ b/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs | |||
@@ -56,9 +56,5 @@ namespace OpenSim.Data.SQLite | |||
56 | return ret[0]; | 56 | return ret[0]; |
57 | } | 57 | } |
58 | 58 | ||
59 | public override bool Store(AgentPreferencesData data) | ||
60 | { | ||
61 | return base.Store(data); | ||
62 | } | ||
63 | } | 59 | } |
64 | } | 60 | } |