mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
XML skip initial data
This commit is contained in:
parent
44347b212d
commit
221d86782b
|
@ -12,7 +12,6 @@
|
|||
<LDBNAME>D$S</LDBNAME>
|
||||
<UCCHECK>X</UCCHECK>
|
||||
</PROGDIR>
|
||||
<DYNPROS/>
|
||||
<TPOOL>
|
||||
<item>
|
||||
<ID>R</ID>
|
||||
|
|
|
@ -547,9 +547,11 @@ CLASS lcl_object_oriented_base IMPLEMENTATION.
|
|||
rt_source = lo_oo_serializer->serialize_abap_clif_source( is_class_key ).
|
||||
ENDCASE.
|
||||
ENDMETHOD.
|
||||
|
||||
METHOD lif_object_oriented_object_fnc~get_skip_test_classes.
|
||||
rv_skip = mv_skip_test_classes.
|
||||
ENDMETHOD.
|
||||
|
||||
METHOD lif_object_oriented_object_fnc~get_class_properties.
|
||||
ASSERT 0 = 1. "Subclass responsibility
|
||||
ENDMETHOD.
|
||||
|
|
|
@ -215,6 +215,10 @@ CLASS lcl_xml_output IMPLEMENTATION.
|
|||
|
||||
ASSERT NOT iv_name IS INITIAL.
|
||||
|
||||
IF ig_data IS INITIAL.
|
||||
RETURN.
|
||||
ENDIF.
|
||||
|
||||
APPEND INITIAL LINE TO lt_stab ASSIGNING <ls_stab>.
|
||||
<ls_stab>-name = iv_name.
|
||||
GET REFERENCE OF ig_data INTO <ls_stab>-value.
|
||||
|
|
Loading…
Reference in New Issue
Block a user