Finally cutting the gordian knot. Friends needs to be both a module and a

service, and never the twain shall meet. This finally opens up the path to
a working friends implementation
This commit is contained in:
Melanie
2010-02-04 12:21:14 +00:00
parent f9a61f2825
commit 0ab8dd61d7
3 changed files with 49 additions and 15 deletions

View File

@@ -40,7 +40,6 @@ using OpenSim.Framework.Communications;
using OpenSim.Region.Framework.Interfaces;
using OpenSim.Region.Framework.Scenes;
using OpenSim.Services.Interfaces;
using FriendInfo = OpenSim.Region.Framework.Interfaces.FriendInfo;
namespace OpenSim.Region.CoreModules.Avatar.Friends
{
@@ -88,10 +87,5 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
{
return 1;
}
public FriendInfo[] GetFriends(UUID PrincipalID)
{
return new FriendInfo[0];
}
}
}