(Jid jid)
| 611 | //#ifndef WMUC |
| 612 | |
| 613 | public MucContact findMucContact(Jid jid) { |
| 614 | Contact contact = findContact(jid, true); |
| 615 | if (contact instanceof MucContact) { |
| 616 | return (MucContact) contact; |
| 617 | } else { |
| 618 | if (contact != null) { |
| 619 | // drop buggy bookmark in roster |
| 620 | synchronized (hContacts) { |
| 621 | hContacts.removeElement(contact); |
| 622 | } |
| 623 | } |
| 624 | return null; |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | public final ConferenceGroup initMuc(String from, String joinPassword) { |
| 629 |
no test coverage detected