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:
UltimateZero 2016-05-15 18:41:57 +02:00 committed by Florian Schmaus
parent fefc8cf332
commit df0f805feb
1 changed files with 1 additions and 8 deletions

View File

@ -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);
}