diff options
author | Justin Clark-Casey (justincc) | 2011-01-18 00:29:10 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-01-18 00:29:10 +0000 |
commit | 3083c517a01b4265434f9286aa1c95b2b513549b (patch) | |
tree | b566437e6be4c05f579a18b9f516977296040059 /OpenSim/Region/Framework/Scenes | |
parent | Prune some of the excess logging for client logins. (diff) | |
download | opensim-SC_OLD-3083c517a01b4265434f9286aa1c95b2b513549b.zip opensim-SC_OLD-3083c517a01b4265434f9286aa1c95b2b513549b.tar.gz opensim-SC_OLD-3083c517a01b4265434f9286aa1c95b2b513549b.tar.bz2 opensim-SC_OLD-3083c517a01b4265434f9286aa1c95b2b513549b.tar.xz |
minor: resolve some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs index 004e20c..cff2cf4 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs | |||
@@ -849,7 +849,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
849 | /// <param name="xferManager"></param> | 849 | /// <param name="xferManager"></param> |
850 | public void RequestInventoryFile(IClientAPI client, IXfer xferManager) | 850 | public void RequestInventoryFile(IClientAPI client, IXfer xferManager) |
851 | { | 851 | { |
852 | bool changed = CreateInventoryFile(); | 852 | CreateInventoryFile(); |
853 | 853 | ||
854 | if (m_inventorySerial == 0) // No inventory | 854 | if (m_inventorySerial == 0) // No inventory |
855 | { | 855 | { |
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 7b94202..03cd90f 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -1108,7 +1108,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1108 | /// </summary> | 1108 | /// </summary> |
1109 | public void CompleteMovement(IClientAPI client) | 1109 | public void CompleteMovement(IClientAPI client) |
1110 | { | 1110 | { |
1111 | DateTime startTime = DateTime.Now; | 1111 | // DateTime startTime = DateTime.Now; |
1112 | 1112 | ||
1113 | m_log.DebugFormat( | 1113 | m_log.DebugFormat( |
1114 | "[SCENE PRESENCE]: Completing movement of {0} into region {1}", | 1114 | "[SCENE PRESENCE]: Completing movement of {0} into region {1}", |