diff options
Some refactoring from about a week ago that I forgot to commit, of AssetTransactionModule to cut down on number of classes and to work towards having a base AssetXferUploader class than can be shared with EstateTerrainXferHandler
Diffstat (limited to 'OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs b/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs index 010fcf7..f9f44f0 100644 --- a/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs +++ b/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs | |||
@@ -35,6 +35,7 @@ using OpenSim.Region.Interfaces; | |||
35 | 35 | ||
36 | namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction | 36 | namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction |
37 | { | 37 | { |
38 | /* | ||
38 | public class AgentAssetTransactionsManager | 39 | public class AgentAssetTransactionsManager |
39 | { | 40 | { |
40 | //private static readonly ILog m_log | 41 | //private static readonly ILog m_log |
@@ -71,8 +72,8 @@ namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction | |||
71 | { | 72 | { |
72 | if (!AgentTransactions.ContainsKey(userID)) | 73 | if (!AgentTransactions.ContainsKey(userID)) |
73 | { | 74 | { |
74 | AgentAssetTransactions transactions | 75 | AgentAssetTransactions transactions = null; |
75 | = new AgentAssetTransactions(userID, this, m_dumpAssetsToFile); | 76 | //= new AgentAssetTransactions(userID, this, m_dumpAssetsToFile); |
76 | AgentTransactions.Add(userID, transactions); | 77 | AgentTransactions.Add(userID, transactions); |
77 | } | 78 | } |
78 | 79 | ||
@@ -226,4 +227,5 @@ namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction | |||
226 | transactions.HandleXfer(xferID, packetID, data); | 227 | transactions.HandleXfer(xferID, packetID, data); |
227 | } | 228 | } |
228 | } | 229 | } |
230 | */ | ||
229 | } | 231 | } |