1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-10 17:49:38 +02:00

Fix javadoc warnings and deprecated methods

This commit is contained in:
Florian Schmaus 2014-11-02 12:12:56 +01:00
parent c351382c73
commit fe3dcba9b2
11 changed files with 20 additions and 20 deletions

View file

@ -164,7 +164,7 @@ public class MultipleRecipientManager {
// Remove the sender from the TO/CC list (try with bare JID too)
String from = connection.getUser();
if (!to.remove(from) && !cc.remove(from)) {
String bareJID = XmppStringUtils.parseBareAddress(from);
String bareJID = XmppStringUtils.parseBareJid(from);
to.remove(bareJID);
cc.remove(bareJID);
}