Skips CRs while parsing packet properties. SMACK-138

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2321 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-06-03 16:18:30 +00:00 committed by gdombiak
parent 250ab4de71
commit 2bb363b898
1 changed files with 4 additions and 0 deletions

View File

@ -748,9 +748,13 @@ class PacketReader {
int eventType = parser.next();
if (eventType == XmlPullParser.START_TAG && parser.getName().equals("property")) {
// Advance to name element.
// Skip CRs
parser.next();
parser.next();
String name = parser.nextText();
parser.next();
// Skip CRs
parser.next();
String type = parser.getAttributeValue("", "type");
String valueText = parser.nextText();
Object value = null;