diff options
Diffstat (limited to 'OpenSim/Region/Environment')
3 files changed, 8 insertions, 12 deletions
diff --git a/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs b/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs index 8d422aa..be8aeea 100644 --- a/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs +++ b/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs | |||
@@ -26,8 +26,8 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | using System.Reflection; | 29 | //using System.Reflection; |
30 | using log4net; | 30 | //using log4net; |
31 | using OpenMetaverse; | 31 | using OpenMetaverse; |
32 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
33 | using OpenSim.Region.Environment.Scenes; | 33 | using OpenSim.Region.Environment.Scenes; |
@@ -37,8 +37,8 @@ namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction | |||
37 | { | 37 | { |
38 | public class AgentAssetTransactionsManager | 38 | public class AgentAssetTransactionsManager |
39 | { | 39 | { |
40 | private static readonly ILog m_log | 40 | //private static readonly ILog m_log |
41 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 41 | // = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 42 | ||
43 | /// <summary> | 43 | /// <summary> |
44 | /// Each agent has its own singleton collection of transactions | 44 | /// Each agent has its own singleton collection of transactions |
diff --git a/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AssetXferUploader.cs b/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AssetXferUploader.cs index 9c0888a..5484ad5 100644 --- a/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AssetXferUploader.cs +++ b/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AssetXferUploader.cs | |||
@@ -55,7 +55,6 @@ namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction | |||
55 | private IClientAPI ourClient; | 55 | private IClientAPI ourClient; |
56 | private UUID TransactionID = UUID.Zero; | 56 | private UUID TransactionID = UUID.Zero; |
57 | private sbyte type = 0; | 57 | private sbyte type = 0; |
58 | private bool UploadComplete; | ||
59 | private byte wearableType = 0; | 58 | private byte wearableType = 0; |
60 | public ulong XferID; | 59 | public ulong XferID; |
61 | 60 | ||
@@ -140,15 +139,12 @@ namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction | |||
140 | 139 | ||
141 | protected void RequestStartXfer() | 140 | protected void RequestStartXfer() |
142 | { | 141 | { |
143 | UploadComplete = false; | ||
144 | XferID = Util.GetNextXferID(); | 142 | XferID = Util.GetNextXferID(); |
145 | ourClient.SendXferRequest(XferID, m_asset.Type, m_asset.FullID, 0, new byte[0]); | 143 | ourClient.SendXferRequest(XferID, m_asset.Type, m_asset.FullID, 0, new byte[0]); |
146 | } | 144 | } |
147 | 145 | ||
148 | protected void SendCompleteMessage() | 146 | protected void SendCompleteMessage() |
149 | { | 147 | { |
150 | UploadComplete = true; | ||
151 | |||
152 | ourClient.SendAssetUploadCompleteMessage(m_asset.Type, true, m_asset.FullID); | 148 | ourClient.SendAssetUploadCompleteMessage(m_asset.Type, true, m_asset.FullID); |
153 | 149 | ||
154 | m_finished = true; | 150 | m_finished = true; |
diff --git a/OpenSim/Region/Environment/Modules/World/Wind/WindModule.cs b/OpenSim/Region/Environment/Modules/World/Wind/WindModule.cs index d7bc42f..fced389 100644 --- a/OpenSim/Region/Environment/Modules/World/Wind/WindModule.cs +++ b/OpenSim/Region/Environment/Modules/World/Wind/WindModule.cs | |||
@@ -140,10 +140,10 @@ namespace OpenSim.Region.Environment.Modules | |||
140 | //m_log.Debug("[WIND]:Regenerating..."); | 140 | //m_log.Debug("[WIND]:Regenerating..."); |
141 | GenWindPos(); // Generate shared values once | 141 | GenWindPos(); // Generate shared values once |
142 | 142 | ||
143 | int spotxp = 0; | 143 | //int spotxp = 0; |
144 | int spotyp = 0; | 144 | //int spotyp = 0; |
145 | int spotxm = 0; | 145 | //int spotxm = 0; |
146 | int spotym = 0; | 146 | //int spotym = 0; |
147 | List<ScenePresence> avatars = m_scene.GetAvatars(); | 147 | List<ScenePresence> avatars = m_scene.GetAvatars(); |
148 | foreach (ScenePresence avatar in avatars) | 148 | foreach (ScenePresence avatar in avatars) |
149 | { | 149 | { |