Anonymous - 2008-08-28

Hello, I have a problem with the contactRemovedMe event.

I deleted the msn contact logging in from JML, but the JML doesn't fire the contactRemovedMe

Event, and how can I catch the removed event?  contactAddedMe is OK.

my code:

messenger.addContactListListener(new MsnContactListAdapter() {

            @Override
            public void contactAddedMe(MsnMessenger messenger,
                    MsnContact contact) {
                log.info(messenger + ":" + contact.getEmail().getEmailAddress()
                        + " add me");
            }

            @Override
            public void contactRemovedMe(MsnMessenger messenger,
                    MsnContact contact) {
                log.info(messenger + ":" + contact.getEmail().getEmailAddress()
                        + " delete me");
            }
}
 
Thanks very much.