Remove a misleading event that was only used internally
parent
6277156044
commit
9248300596
|
@ -32,12 +32,10 @@ using OpenSim.Framework;
|
||||||
namespace OpenSim.Region.Framework.Interfaces
|
namespace OpenSim.Region.Framework.Interfaces
|
||||||
{
|
{
|
||||||
public delegate void NewGroupNotice(UUID groupID, UUID noticeID);
|
public delegate void NewGroupNotice(UUID groupID, UUID noticeID);
|
||||||
public delegate void GroupChange(UUID groupID);
|
|
||||||
|
|
||||||
public interface IGroupsModule
|
public interface IGroupsModule
|
||||||
{
|
{
|
||||||
event NewGroupNotice OnNewGroupNotice;
|
event NewGroupNotice OnNewGroupNotice;
|
||||||
event GroupChange OnGroupChange;
|
|
||||||
|
|
||||||
void ActivateGroup(IClientAPI remoteClient, UUID groupID);
|
void ActivateGroup(IClientAPI remoteClient, UUID groupID);
|
||||||
List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID);
|
List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID);
|
||||||
|
|
|
@ -541,7 +541,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
|
||||||
#region IGroupsModule Members
|
#region IGroupsModule Members
|
||||||
|
|
||||||
public event NewGroupNotice OnNewGroupNotice;
|
public event NewGroupNotice OnNewGroupNotice;
|
||||||
public event GroupChange OnGroupChange;
|
|
||||||
|
|
||||||
public GroupRecord GetGroupRecord(UUID GroupID)
|
public GroupRecord GetGroupRecord(UUID GroupID)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue