mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 02:22:05 +01:00
[muc] Fix GroupChatInviation's constructor
Fixes: 5e1cd62021
("[muc] Null-check GroupChatInviation's 'roomAddress' argument")
This commit is contained in:
parent
e87da18495
commit
9eee3b8d76
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ public class GroupChatInvitation implements ExtensionElement {
|
|||
* @param roomAddress the address of the group chat room.
|
||||
*/
|
||||
public GroupChatInvitation(EntityBareJid roomAddress) {
|
||||
this.roomAddress = Objects.requireNonNull(null);
|
||||
this.roomAddress = Objects.requireNonNull(roomAddress);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue