Skip to content

Commit

Permalink
Merge branch 'master' of github.com:igniterealtime/Smack
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowdalic committed Jul 30, 2019
2 parents 8da954f + 96e1447 commit eecd5b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static long requireUInt32(long value) {
throw new IllegalArgumentException("unsigned 32-bit integers can't be negative");
}
if (value > ((1L << 32) - 1)) {
throw new IllegalArgumentException("unsigned 32-bit integers can't be greater then 2^32 - 1");
throw new IllegalArgumentException("unsigned 32-bit integers can't be greater than 2^32 - 1");
}
return value;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public XmlStringBuilder toXML(XmlEnvironment xmlEnvironment) {
xml.append(uris, xmlEnvironment);

xml.closeElement(this);
return null;
return xml;
}

public MediaElement from(FormField formField) {
Expand Down

0 comments on commit eecd5b7

Please sign in to comment.