mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Use empty string nick on empty element tag
It will use an empty string in case of an empty element tag.
This commit is contained in:
parent
fefc8cf332
commit
df0f805feb
1 changed files with 1 additions and 8 deletions
|
@ -99,14 +99,7 @@ public class Nick implements ExtensionElement {
|
|||
@Override
|
||||
public Nick parse(XmlPullParser parser, int initialDepth)
|
||||
throws XmlPullParserException, IOException {
|
||||
|
||||
parser.next();
|
||||
final String name = parser.getText();
|
||||
|
||||
// Advance to end of extension.
|
||||
while(parser.getEventType() != XmlPullParser.END_TAG) {
|
||||
parser.next();
|
||||
}
|
||||
final String name = parser.nextText();
|
||||
|
||||
return new Nick(name);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue