mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-12-22 18:48:00 +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