* refactor: Remove MakeHttpRequest wrapper method from Scene in favour of a direct call

0.6.2-post-fixes
Justin Clarke Casey 2009-01-07 18:36:27 +00:00
parent 0f9918f1d3
commit a9df572c25
1 changed files with 0 additions and 18 deletions

View File

@ -141,7 +141,6 @@ namespace OpenSim.Region.Environment.Scenes
public IXfer XferManager;
protected IHttpRequests m_httpRequestModule;
protected IXMLRPC m_xmlrpcModule;
protected IWorldComm m_worldCommModule;
protected IAvatarFactory m_AvatarFactory;
@ -766,7 +765,6 @@ namespace OpenSim.Region.Environment.Scenes
/// </summary>
public void SetModuleInterfaces()
{
m_httpRequestModule = RequestModuleInterface<IHttpRequests>();
m_xmlrpcModule = RequestModuleInterface<IXMLRPC>();
m_worldCommModule = RequestModuleInterface<IWorldComm>();
XferManager = RequestModuleInterface<IXfer>();
@ -3387,22 +3385,6 @@ namespace OpenSim.Region.Environment.Scenes
}
}
/// <summary>
///
/// </summary>
/// <param name="url"></param>
/// <param name="type"></param>
/// <param name="body"></param>
/// <returns></returns>
public UUID MakeHttpRequest(string url, string type, string body)
{
if (m_httpRequestModule != null)
{
return m_httpRequestModule.MakeHttpRequest(url, type, body);
}
return UUID.Zero;
}
public virtual void StoreAddFriendship(UUID ownerID, UUID friendID, uint perms)
{
m_sceneGridService.AddNewUserFriend(ownerID, friendID, perms);