aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLImageManager.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-01-02 21:31:42 +0000
committerJustin Clark-Casey (justincc)2012-01-02 21:31:42 +0000
commitfac8c258515c533854549109f14615b8be3ddc15 (patch)
treed5657b8b6b1c6074566574bd3a961378cc51f056 /OpenSim/Region/ClientStack/Linden/UDP/LLImageManager.cs
parentAdding commented out log messages and some minor formatting for future bug hu... (diff)
downloadopensim-SC_OLD-fac8c258515c533854549109f14615b8be3ddc15.zip
opensim-SC_OLD-fac8c258515c533854549109f14615b8be3ddc15.tar.gz
opensim-SC_OLD-fac8c258515c533854549109f14615b8be3ddc15.tar.bz2
opensim-SC_OLD-fac8c258515c533854549109f14615b8be3ddc15.tar.xz
Reduce accessibility of some J2KImage/LLImageManager properties and methods to reduce potential code complexity and make code reading easier.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLImageManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLImageManager.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLImageManager.cs
index 5c4a662..e3a881f 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLImageManager.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLImageManager.cs
@@ -211,7 +211,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
211 211
212 #region Priority Queue Helpers 212 #region Priority Queue Helpers
213 213
214 J2KImage GetHighestPriorityImage() 214 private J2KImage GetHighestPriorityImage()
215 { 215 {
216 J2KImage image = null; 216 J2KImage image = null;
217 217
@@ -226,7 +226,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
226 return image; 226 return image;
227 } 227 }
228 228
229 void AddImageToQueue(J2KImage image) 229 private void AddImageToQueue(J2KImage image)
230 { 230 {
231 image.PriorityQueueHandle = null; 231 image.PriorityQueueHandle = null;
232 232
@@ -237,7 +237,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
237 } 237 }
238 } 238 }
239 239
240 void RemoveImageFromQueue(J2KImage image) 240 private void RemoveImageFromQueue(J2KImage image)
241 { 241 {
242 lock (m_syncRoot) 242 lock (m_syncRoot)
243 { 243 {
@@ -246,7 +246,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
246 } 246 }
247 } 247 }
248 248
249 void UpdateImageInQueue(J2KImage image) 249 private void UpdateImageInQueue(J2KImage image)
250 { 250 {
251 lock (m_syncRoot) 251 lock (m_syncRoot)
252 { 252 {