mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
minor refactoring. Change getName and GetVersion methods (yes the had different casings)
to Name and Version properties for the User stores.
This commit is contained in:
@@ -505,18 +505,18 @@ namespace OpenSim.Data.SQLite
|
||||
/// Returns the name of the storage provider
|
||||
/// </summary>
|
||||
/// <returns>Storage provider name</returns>
|
||||
override public string getName()
|
||||
override public string Name
|
||||
{
|
||||
return "Sqlite Userdata";
|
||||
get {return "Sqlite Userdata";}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the version of the storage provider
|
||||
/// </summary>
|
||||
/// <returns>Storage provider version</returns>
|
||||
override public string GetVersion()
|
||||
override public string Version
|
||||
{
|
||||
return "0.1";
|
||||
get {return "0.1";}
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
||||
Reference in New Issue
Block a user