1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 12:02:05 +01:00

Make XmlStringBuilder equals() CharSequence aware

The minimal condition in order to check equality in XmlStringBuilder is
that 'other' implements the CharSequence interface. Not as it was
previously, that it's also a XmlStringBuilder.

This allows junit's assertEquals() to be used (to a certain extend).
This commit is contained in:
Florian Schmaus 2014-08-25 13:43:44 +02:00
parent f282323eec
commit 02228702da

View file

@ -285,11 +285,11 @@ public class XmlStringBuilder implements Appendable, CharSequence {
@Override
public boolean equals(Object other) {
if (!(other instanceof XmlStringBuilder)) {
if (!(other instanceof CharSequence)) {
return false;
}
XmlStringBuilder otherXmlStringBuilder = (XmlStringBuilder) other;
return toString().equals(otherXmlStringBuilder.toString());
CharSequence otherCharSequenceBuilder = (CharSequence) other;
return toString().equals(otherCharSequenceBuilder.toString());
}
@Override