diff options
author | Sean Dague | 2008-04-10 14:09:30 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-10 14:09:30 +0000 |
commit | 25fea01b92a7682e10f57ce979217d31fee975ef (patch) | |
tree | 0e0dec2344cd06609bf47f1a7e2245a0a94f99c6 /OpenSim/Data/DB4o | |
parent | moved fields to properties for UserDataProfile, which was (diff) | |
download | opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.zip opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.tar.gz opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.tar.bz2 opensim-SC_OLD-25fea01b92a7682e10f57ce979217d31fee975ef.tar.xz |
further renaming of properties for clarity
Diffstat (limited to 'OpenSim/Data/DB4o')
-rw-r--r-- | OpenSim/Data/DB4o/DB4oManager.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Data/DB4o/DB4oManager.cs b/OpenSim/Data/DB4o/DB4oManager.cs index 13bd61c..a9368d5 100644 --- a/OpenSim/Data/DB4o/DB4oManager.cs +++ b/OpenSim/Data/DB4o/DB4oManager.cs | |||
@@ -125,10 +125,10 @@ namespace OpenSim.Data.DB4o | |||
125 | IObjectSet result = database.Get(typeof (UserProfileData)); | 125 | IObjectSet result = database.Get(typeof (UserProfileData)); |
126 | foreach (UserProfileData row in result) | 126 | foreach (UserProfileData row in result) |
127 | { | 127 | { |
128 | if (userProfiles.ContainsKey(row.Id)) | 128 | if (userProfiles.ContainsKey(row.ID)) |
129 | userProfiles[row.Id] = row; | 129 | userProfiles[row.ID] = row; |
130 | else | 130 | else |
131 | userProfiles.Add(row.Id, row); | 131 | userProfiles.Add(row.ID, row); |
132 | } | 132 | } |
133 | database.Close(); | 133 | database.Close(); |
134 | } | 134 | } |
@@ -145,13 +145,13 @@ namespace OpenSim.Data.DB4o | |||
145 | /// <returns>true on success, false on fail to persist to db</returns> | 145 | /// <returns>true on success, false on fail to persist to db</returns> |
146 | public bool UpdateRecord(UserProfileData record) | 146 | public bool UpdateRecord(UserProfileData record) |
147 | { | 147 | { |
148 | if (userProfiles.ContainsKey(record.Id)) | 148 | if (userProfiles.ContainsKey(record.ID)) |
149 | { | 149 | { |
150 | userProfiles[record.Id] = record; | 150 | userProfiles[record.ID] = record; |
151 | } | 151 | } |
152 | else | 152 | else |
153 | { | 153 | { |
154 | userProfiles.Add(record.Id, record); | 154 | userProfiles.Add(record.ID, record); |
155 | } | 155 | } |
156 | 156 | ||
157 | try | 157 | try |