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); - } } }