Fix a error in stream reader
This commit is contained in:
parent
92a28dc627
commit
c5e6abd684
1 changed files with 3 additions and 2 deletions
|
@ -62,8 +62,9 @@ public class XmlRpcStreamReader {
|
|||
if ( event == XMLStreamConstants.START_ELEMENT ) {
|
||||
String elementName = xmlStreamReader.getLocalName ( );
|
||||
if ( elementName.equals ( "param" ) ) {
|
||||
require( XMLStreamConstants.START_ELEMENT, null, "value");
|
||||
nextTag (); // Something to be deserialized!
|
||||
nextTag ( );
|
||||
require ( XMLStreamConstants.START_ELEMENT , null , "value" );
|
||||
nextTag ( ); // Something to be deserialized!
|
||||
|
||||
|
||||
Object value = deserializeValue ( );
|
||||
|
|
Loading…
Reference in a new issue