MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / findMucContact

Method findMucContact

src/main/java/Client/Roster.java:613–626  ·  view source on GitHub ↗
(Jid jid)

Source from the content-addressed store, hash-verified

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

Callers 2

initMucMethod · 0.95
mucContactMethod · 0.95

Calls 1

findContactMethod · 0.95

Tested by

no test coverage detected