aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/ClientView.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-03-21 23:31:32 +0000
committerCharles Krinke2008-03-21 23:31:32 +0000
commit2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae (patch)
tree531299c8489edeed6ac6ecae03c324535d2a2031 /OpenSim/Region/ClientStack/ClientView.cs
parentAdds in +, -, and / operators for Rotations (and fixes Mantis 671) (diff)
downloadopensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.zip
opensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.tar.gz
opensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.tar.bz2
opensim-SC_OLD-2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae.tar.xz
Remove a couple more compiler warnings by commenting unused variables.
This takes us down to 15 compiler warnings on a VS2005 C# build.
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/ClientView.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs
index 0f8e196..fca78f7 100644
--- a/OpenSim/Region/ClientStack/ClientView.cs
+++ b/OpenSim/Region/ClientStack/ClientView.cs
@@ -1164,7 +1164,8 @@ namespace OpenSim.Region.ClientStack
1164 // 6 to 7 items at a time, so let's stick with 6 1164 // 6 to 7 items at a time, so let's stick with 6
1165 int MAX_ITEMS_PER_PACKET = 6; 1165 int MAX_ITEMS_PER_PACKET = 6;
1166 1166
1167 uint FULL_MASK_PERMISSIONS = 2147483647; 1167//Ckrinke This variable is not used, so comment out to remove the warning from the compiler (3-21-08)
1168//Ckrinke uint FULL_MASK_PERMISSIONS = 2147483647;
1168 1169
1169 if (fetchItems) 1170 if (fetchItems)
1170 { 1171 {