* minor: remove some compiler warnings

This commit is contained in:
Justin Clarke Casey
2009-04-22 19:43:58 +00:00
parent 0f08f4cc4b
commit c25ceb009e
3 changed files with 39 additions and 39 deletions

View File

@@ -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