diff options
author | Sean Dague | 2008-05-02 12:35:24 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-02 12:35:24 +0000 |
commit | 4a8f43244160ca9324cc43a54ba64a51e10268bf (patch) | |
tree | 5035f70e843c1a6594193e0cd7db1c1d57b83528 /OpenSim/Data/SQLite | |
parent | Minor formatting and documentation cleanup. (diff) | |
download | opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.zip opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.gz opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.bz2 opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.xz |
minor refactoring. Change getName and GetVersion methods (yes the had different casings)
to Name and Version properties for the User stores.
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteUserData.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteUserData.cs b/OpenSim/Data/SQLite/SQLiteUserData.cs index 90dec3e..bca5401 100644 --- a/OpenSim/Data/SQLite/SQLiteUserData.cs +++ b/OpenSim/Data/SQLite/SQLiteUserData.cs | |||
@@ -505,18 +505,18 @@ namespace OpenSim.Data.SQLite | |||
505 | /// Returns the name of the storage provider | 505 | /// Returns the name of the storage provider |
506 | /// </summary> | 506 | /// </summary> |
507 | /// <returns>Storage provider name</returns> | 507 | /// <returns>Storage provider name</returns> |
508 | override public string getName() | 508 | override public string Name |
509 | { | 509 | { |
510 | return "Sqlite Userdata"; | 510 | get {return "Sqlite Userdata";} |
511 | } | 511 | } |
512 | 512 | ||
513 | /// <summary> | 513 | /// <summary> |
514 | /// Returns the version of the storage provider | 514 | /// Returns the version of the storage provider |
515 | /// </summary> | 515 | /// </summary> |
516 | /// <returns>Storage provider version</returns> | 516 | /// <returns>Storage provider version</returns> |
517 | override public string GetVersion() | 517 | override public string Version |
518 | { | 518 | { |
519 | return "0.1"; | 519 | get {return "0.1";} |
520 | } | 520 | } |
521 | 521 | ||
522 | /*********************************************************************** | 522 | /*********************************************************************** |