From 496f35b4e85b2145138de0924add1c0be7be5320 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 14 Jun 2015 08:04:25 -0700 Subject: [PATCH] Removing the Store methods in the DB layer of AgentPreferences, as they were simply calling the base ones. --- OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs | 5 ----- OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs | 4 ---- OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs | 4 ---- 3 files changed, 13 deletions(-) diff --git a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs index 6be205ed10..ed0ab9890d 100644 --- a/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs +++ b/OpenSim/Data/MySQL/MySQLAgentPreferencesData.cs @@ -51,11 +51,6 @@ namespace OpenSim.Data.MySQL return ret[0]; } - - public override bool Store(AgentPreferencesData data) - { - return base.Store(data); - } } } diff --git a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs index 4c8472435f..7f3cbeed72 100644 --- a/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLAgentPreferencesData.cs @@ -52,9 +52,5 @@ namespace OpenSim.Data.PGSQL return ret[0]; } - public override bool Store(AgentPreferencesData data) - { - return base.Store(data); - } } } diff --git a/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs b/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs index 5bfcedb848..d22393d85d 100644 --- a/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs +++ b/OpenSim/Data/SQLite/SQLiteAgentPreferencesData.cs @@ -56,9 +56,5 @@ namespace OpenSim.Data.SQLite return ret[0]; } - public override bool Store(AgentPreferencesData data) - { - return base.Store(data); - } } }