Subject: Rostermanager: incorrect documentation
Hi all,
In Rostermanager.cs:
/// <summary>
/// Add a Rosteritem to the Roster
/// </summary>
/// <param name="jid">The BARE jid of the rosteritem that should be removed</param>
public void AddRosterItem(Jid jid)
{
AddRosterItem(jid, null, new string[] {});
}
Should be something like:
/// <summary>
/// Add a Rosteritem to the Roster
/// </summary>
/// <param name="jid">The BARE jid of the rosteritem that should be added</param>
public void AddRosterItem(Jid jid)
{
AddRosterItem(jid, null, new string[] {});
}
In Rostermanager.cs:
/// <summary>
/// Add a Rosteritem to the Roster
/// </summary>
/// <param name="jid">The BARE jid of the rosteritem that should be removed</param>
public void AddRosterItem(Jid jid)
{
AddRosterItem(jid, null, new string[] {});
}
Should be something like:
/// <summary>
/// Add a Rosteritem to the Roster
/// </summary>
/// <param name="jid">The BARE jid of the rosteritem that should be added</param>
public void AddRosterItem(Jid jid)
{
AddRosterItem(jid, null, new string[] {});
}