From 2f3bb3b836124e8cafe6b3aa1e9cf2b18f8b87ae Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Fri, 21 Mar 2008 23:31:32 +0000 Subject: Remove a couple more compiler warnings by commenting unused variables. This takes us down to 15 compiler warnings on a VS2005 C# build. --- OpenSim/Region/ClientStack/ClientView.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/ClientStack') 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 // 6 to 7 items at a time, so let's stick with 6 int MAX_ITEMS_PER_PACKET = 6; - uint FULL_MASK_PERMISSIONS = 2147483647; +//Ckrinke This variable is not used, so comment out to remove the warning from the compiler (3-21-08) +//Ckrinke uint FULL_MASK_PERMISSIONS = 2147483647; if (fetchItems) { -- cgit v1.1