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:
Sean Dague
2008-05-02 12:35:24 +00:00
parent b1aacfe0d4
commit 4a8f432441
7 changed files with 19 additions and 30 deletions

View File

@@ -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";}
}
/***********************************************************************