1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 14:22:05 +01:00

Add MultiUserChat.toString()

This commit is contained in:
Florian Schmaus 2014-12-30 12:10:12 +01:00
parent ca687087d5
commit cba681a967

View file

@ -2091,4 +2091,9 @@ public class MultiUserChat {
}
}
}
@Override
public String toString() {
return "MUC: " + room + "(" + connection.getUser() + ")";
}
}