* restore deleted method documentation, some to IRegionDataStore and some to MySQLRegionData

* I would like to keep documentation on methods, even if it sometimes seems obvious (and not all of these are)
This commit is contained in:
Justin Clarke Casey
2008-11-26 17:42:35 +00:00
parent 3e3cf67b00
commit c85e2a0fb0
2 changed files with 35 additions and 1 deletions

View File

@@ -307,7 +307,12 @@ namespace OpenSim.Data.MySQL
ExecuteNonQuery(cmd);
}
}
/// <summary>
/// Remove all persisted items of the given prim.
/// The caller must acquire the necessrary synchronization locks and commit or rollback changes.
/// </summary>
/// <param name="uuid">the Item UUID</param>
private void RemoveItems(UUID uuid)
{
lock (m_Connection)
@@ -403,6 +408,10 @@ namespace OpenSim.Data.MySQL
return objects;
}
/// <summary>
/// Load in a prim's persisted inventory.
/// </summary>
/// <param name="prim">The prim</param>
private void LoadItems(SceneObjectPart prim)
{
lock (m_Connection)