Removing the Store methods in the DB layer of AgentPreferences, as they were simply calling the base ones.
parent
3853904b80
commit
496f35b4e8
|
@ -51,11 +51,6 @@ namespace OpenSim.Data.MySQL
|
||||||
|
|
||||||
return ret[0];
|
return ret[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
public override bool Store(AgentPreferencesData data)
|
|
||||||
{
|
|
||||||
return base.Store(data);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,9 +52,5 @@ namespace OpenSim.Data.PGSQL
|
||||||
return ret[0];
|
return ret[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
public override bool Store(AgentPreferencesData data)
|
|
||||||
{
|
|
||||||
return base.Store(data);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,9 +56,5 @@ namespace OpenSim.Data.SQLite
|
||||||
return ret[0];
|
return ret[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
public override bool Store(AgentPreferencesData data)
|
|
||||||
{
|
|
||||||
return base.Store(data);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue