Removing the Store methods in the DB layer of AgentPreferences, as they were simply calling the base ones.

fsassets
Diva Canto 2015-06-14 08:04:25 -07:00
parent 3853904b80
commit 496f35b4e8
3 changed files with 0 additions and 13 deletions

View File

@ -51,11 +51,6 @@ namespace OpenSim.Data.MySQL
return ret[0];
}
public override bool Store(AgentPreferencesData data)
{
return base.Store(data);
}
}
}

View File

@ -52,9 +52,5 @@ namespace OpenSim.Data.PGSQL
return ret[0];
}
public override bool Store(AgentPreferencesData data)
{
return base.Store(data);
}
}
}

View File

@ -56,9 +56,5 @@ namespace OpenSim.Data.SQLite
return ret[0];
}
public override bool Store(AgentPreferencesData data)
{
return base.Store(data);
}
}
}