aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteUserData.cs
diff options
context:
space:
mode:
authorSean Dague2008-05-02 12:35:24 +0000
committerSean Dague2008-05-02 12:35:24 +0000
commit4a8f43244160ca9324cc43a54ba64a51e10268bf (patch)
tree5035f70e843c1a6594193e0cd7db1c1d57b83528 /OpenSim/Data/SQLite/SQLiteUserData.cs
parentMinor formatting and documentation cleanup. (diff)
downloadopensim-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/SQLiteUserData.cs')
-rw-r--r--OpenSim/Data/SQLite/SQLiteUserData.cs8
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 /***********************************************************************