From c25ceb009e644579c56811faffded540658cd4dd Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 22 Apr 2009 19:43:58 +0000 Subject: [PATCH] * minor: remove some compiler warnings --- .../VWoHTTP/ClientStack/VWHClientView.cs | 14 ++--- OpenSim/Client/VWoHTTP/VWoHTTPModule.cs | 2 +- .../FreeSwitchVoice/FreeSwitchDirectory.cs | 62 +++++++++---------- 3 files changed, 39 insertions(+), 39 deletions(-) diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs index badf91839f..bf622c61d2 100644 --- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs +++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs @@ -12,21 +12,21 @@ namespace OpenSim.Client.VWoHTTP.ClientStack { class VWHClientView : IClientAPI { - private Scene m_scene; +// private Scene m_scene; public void ProcessInMsg(OSHttpRequest req, OSHttpResponse resp) { - string method = req.Url.AbsolutePath.Split('/')[2]; +// string method = req.Url.AbsolutePath.Split('/')[2]; } - private void ProcessAssetRequest(OSHttpRequest req, OSHttpResponse resp) - { - - } +// private void ProcessAssetRequest(OSHttpRequest req, OSHttpResponse resp) +// { +// +// } public VWHClientView(UUID sessionID, UUID agentID, string agentName, Scene scene) { - m_scene = scene; +// m_scene = scene; } #region Implementation of IClientAPI diff --git a/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs b/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs index f698c8c3bd..451bf1e378 100644 --- a/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs +++ b/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs @@ -18,7 +18,7 @@ namespace OpenSim.Client.VWoHTTP private readonly List m_scenes = new List(); - private Dictionary m_clients = new Dictionary(); + //private Dictionary m_clients = new Dictionary(); #region Implementation of IRegionModule diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs index fd384e4ce5..c131a7ffaf 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs @@ -303,36 +303,36 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice return response; } - private Hashtable HandleLoadNetworkLists(Hashtable request) - { - m_log.Info("[FreeSwitchDirectory] HandleLoadNetworkLists called"); - - // TODO the password we return needs to match that sent in the request, this is hard coded for now - string domain = (string) request["domain"]; - - Hashtable response = new Hashtable(); - response["content_type"] = "text/xml"; - response["keepalive"] = false; - response["int_response_code"] = 200; - response["str_response_string"] = String.Format( - "\r\n" + - "\r\n" + - "
\r\n" + - "\r\n" + - "\r\n" + - "\r\n" + - "\r\n" + - "\r\n" + - "\r\n"+ - "\r\n"+ - "\r\n"+ - "\r\n" + - "
\r\n" + - "
\r\n", - domain); - - - return response; - } +// private Hashtable HandleLoadNetworkLists(Hashtable request) +// { +// m_log.Info("[FreeSwitchDirectory] HandleLoadNetworkLists called"); +// +// // TODO the password we return needs to match that sent in the request, this is hard coded for now +// string domain = (string) request["domain"]; +// +// Hashtable response = new Hashtable(); +// response["content_type"] = "text/xml"; +// response["keepalive"] = false; +// response["int_response_code"] = 200; +// response["str_response_string"] = String.Format( +// "\r\n" + +// "\r\n" + +// "
\r\n" + +// "\r\n" + +// "\r\n" + +// "\r\n" + +// "\r\n" + +// "\r\n" + +// "\r\n"+ +// "\r\n"+ +// "\r\n"+ +// "\r\n" + +// "
\r\n" + +// "
\r\n", +// domain); +// +// +// return response; +// } } }