mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
Disallow empty string as node in DiscoverInfo
This commit is contained in:
parent
e3ec422071
commit
ef88bb17d0
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ public class DiscoverInfo extends IQ implements TypedCloneable<DiscoverInfo> {
|
||||||
* @param node the node attribute that supplements the 'jid' attribute
|
* @param node the node attribute that supplements the 'jid' attribute
|
||||||
*/
|
*/
|
||||||
public void setNode(String node) {
|
public void setNode(String node) {
|
||||||
this.node = node;
|
this.node = StringUtils.requireNullOrNotEmpty(node, "The node can not be the empty string");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue