Adds a termination to the struct.

This commit is contained in:
Aria 2023-06-14 03:52:54 -07:00
parent 9978dd6a3f
commit 085c04716d

View file

@ -187,6 +187,9 @@ public class XmlRpcStreamReader {
Object value = deserializeValue ( ); Object value = deserializeValue ( );
struct.put ( name , value ); struct.put ( name , value );
} }
} else if(CURRENT_TAG_NAME.equals ( "struct" ) && xmlStreamReader.getEventType () == XMLStreamConstants.END_ELEMENT)
{
break;
} }
} }
return struct; return struct;