mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-25 15:52:06 +01:00
Switch argument of VCard.setJabberId() to CharSequence
instead of String.
This commit is contained in:
parent
2674161255
commit
5f58529c3a
1 changed files with 2 additions and 2 deletions
|
@ -249,8 +249,8 @@ public class VCard extends IQ {
|
|||
return otherSimpleFields.get("JABBERID");
|
||||
}
|
||||
|
||||
public void setJabberId(String jabberId) {
|
||||
otherSimpleFields.put("JABBERID", jabberId);
|
||||
public void setJabberId(CharSequence jabberId) {
|
||||
otherSimpleFields.put("JABBERID", jabberId.toString());
|
||||
}
|
||||
|
||||
public String getOrganization() {
|
||||
|
|
Loading…
Reference in a new issue