Fix a error in stream reader

This commit is contained in:
Aria 2023-06-14 03:26:12 -07:00
parent c5e6abd684
commit 31fe49b24d

View file

@ -64,7 +64,6 @@ public class XmlRpcStreamReader {
if ( elementName.equals ( "param" ) ) {
nextTag ( );
require ( XMLStreamConstants.START_ELEMENT , null , "value" );
nextTag ( ); // Something to be deserialized!
Object value = deserializeValue ( );