diff options
author | Justin Clark-Casey (justincc) | 2012-01-04 21:40:15 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-01-04 21:40:15 +0000 |
commit | 3a64522267352d1c68ef99ac76c65bd3c4f9eaf1 (patch) | |
tree | 1b6579a38d6deffb4fe06b4fd64b1986ddf1ebb3 /OpenSim/Region/CoreModules/Agent | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-3a64522267352d1c68ef99ac76c65bd3c4f9eaf1.zip opensim-SC-3a64522267352d1c68ef99ac76c65bd3c4f9eaf1.tar.gz opensim-SC-3a64522267352d1c68ef99ac76c65bd3c4f9eaf1.tar.bz2 opensim-SC-3a64522267352d1c68ef99ac76c65bd3c4f9eaf1.tar.xz |
Minor formatting changes and commented out log lines for future debugging of image manager (udp texture fetch). No significant functional changes.
Diffstat (limited to 'OpenSim/Region/CoreModules/Agent')
-rw-r--r-- | OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs b/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs index 7dd9087..14dee84 100644 --- a/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs +++ b/OpenSim/Region/CoreModules/Agent/TextureSender/J2KDecoderModule.cs | |||
@@ -103,6 +103,10 @@ namespace OpenSim.Region.CoreModules.Agent.TextureSender | |||
103 | // If it's cached, return the cached results | 103 | // If it's cached, return the cached results |
104 | if (m_decodedCache.TryGetValue(assetID, out result)) | 104 | if (m_decodedCache.TryGetValue(assetID, out result)) |
105 | { | 105 | { |
106 | // m_log.DebugFormat( | ||
107 | // "[J2KDecoderModule]: Returning existing cached {0} layers j2k decode for {1}", | ||
108 | // result.Length, assetID); | ||
109 | |||
106 | callback(assetID, result); | 110 | callback(assetID, result); |
107 | } | 111 | } |
108 | else | 112 | else |