Stephane - 2007-01-03

Hi,

According to MSNPiki, since MSNP11, the new ADC command allow to add users to your AL BL RL and FL, not your PL.
so, maybe the following OutgoingADC.java code that I've commented should be removed ? Or replaced by if (list == MsnList.PL) ?...
Regards.

public void setAddtoList(MsnList list) {
  if (list == null) {
    throw new NullPointerException();
  }
//  if (list == MsnList.RL) {
//    throw new IllegalArgumentException(list.toString());
//  }
  setParam(0, list.getListName());
}