aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs
diff options
context:
space:
mode:
authorMW2008-11-24 10:03:18 +0000
committerMW2008-11-24 10:03:18 +0000
commit0be9ff19490149509dec72898be3f9dfe84612af (patch)
tree9f8f22a0995d99d3b4315d083cd4ec37c839d681 /OpenSim/Region/Environment/Modules/Agent/AssetTransaction/AgentAssetTransactionsManager.cs
parentThanks SachaMagne for a patch which adds the following console commands: (diff)
downloadopensim-SC_OLD-0be9ff19490149509dec72898be3f9dfe84612af.zip
opensim-SC_OLD-0be9ff19490149509dec72898be3f9dfe84612af.tar.gz
opensim-SC_OLD-0be9ff19490149509dec72898be3f9dfe84612af.tar.bz2
opensim-SC_OLD-0be9ff19490149509dec72898be3f9dfe84612af.tar.xz
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.cs6
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
36namespace OpenSim.Region.Environment.Modules.Agent.AssetTransaction 36namespace 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}