mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
fix, do not strip spaces when parsing xml
This commit is contained in:
parent
475fe9c7c2
commit
d7982405cf
|
@ -545,6 +545,7 @@ CLASS lcl_xml IMPLEMENTATION.
|
|||
li_parser = mi_ixml->create_parser( stream_factory = li_stream_factory
|
||||
istream = li_istream
|
||||
document = mi_xml_doc ).
|
||||
li_parser->set_normalizing( is_normalizing = abap_false ).
|
||||
IF li_parser->parse( ) <> 0.
|
||||
error( li_parser ).
|
||||
ENDIF.
|
||||
|
@ -3577,7 +3578,7 @@ CLASS lcl_serialize_prog IMPLEMENTATION.
|
|||
it_files = it_files
|
||||
CHANGING ct_abap = lt_source ).
|
||||
|
||||
lo_xml->table_read( CHANGING ct_table = lt_tpool ).
|
||||
lo_xml->table_read( CHANGING ct_table = lt_tpool ).
|
||||
|
||||
deserialize_abap( is_item = is_item
|
||||
io_xml = lo_xml
|
||||
|
@ -3590,8 +3591,7 @@ CLASS lcl_serialize_prog IMPLEMENTATION.
|
|||
io_xml = lo_xml ).
|
||||
|
||||
deserialize_textpool( is_item = is_item
|
||||
it_tpool = lt_tpool
|
||||
).
|
||||
it_tpool = lt_tpool ).
|
||||
|
||||
ENDMETHOD. "lif_serialize~deserialize
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user