From 5020e4e602bea89bfab6be0d85a5cf1f68cb00e0 Mon Sep 17 00:00:00 2001 From: MW Date: Sat, 8 Sep 2007 08:12:19 +0000 Subject: Cut down on the number of compile warnings. Now down to 5: 4 are related to unused events on IClientAPI and 1 is a unused variable in LSL_BuiltIn_Commands (which I'll leave to Tedd, as he will know if it will be used in the future or not). --- OpenSim/Region/Environment/Scenes/ScenePresence.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs') diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs index 7b7c595..1f8e5bb 100644 --- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs @@ -88,7 +88,7 @@ namespace OpenSim.Region.Environment.Scenes public delegate void SignificantClientMovement(IClientAPI remote_client); public event SignificantClientMovement OnSignificantClientMovement; - public List InterestList = new List(); + //public List InterestList = new List(); // private Queue m_fullGroupUpdates = new Queue(); // private Queue m_terseGroupUpdates = new Queue(); @@ -198,6 +198,11 @@ namespace OpenSim.Region.Environment.Scenes //temporary until we move some code into the body classes this.m_body = new ChildAgent(); + if (newAvatar) + { + //do we need to use newAvatar? not sure so have added this to kill the compile warning + } + } #endregion -- cgit v1.1