Remove aliases - HTML class (#5907)

This commit is contained in:
Marc Bernard 2022-12-02 10:53:19 -05:00 committed by GitHub
parent 9d0914675f
commit caf282871e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,9 +29,6 @@ CLASS zcl_abapgit_html DEFINITION
PROTECTED SECTION.
PRIVATE SECTION.
ALIASES add FOR zif_abapgit_html~add.
ALIASES wrap FOR zif_abapgit_html~wrap.
TYPES:
BEGIN OF ty_indent_context,
no_indent_jscss TYPE abap_bool,
@ -74,7 +71,7 @@ ENDCLASS.
CLASS ZCL_ABAPGIT_HTML IMPLEMENTATION.
CLASS zcl_abapgit_html IMPLEMENTATION.
METHOD checkbox.
@ -467,7 +464,7 @@ CLASS ZCL_ABAPGIT_HTML IMPLEMENTATION.
METHOD zif_abapgit_html~td.
wrap(
zif_abapgit_html~wrap(
iv_tag = 'td'
iv_content = iv_content
ii_content = ii_content
@ -479,7 +476,7 @@ CLASS ZCL_ABAPGIT_HTML IMPLEMENTATION.
METHOD zif_abapgit_html~th.
wrap(
zif_abapgit_html~wrap(
iv_tag = 'th'
iv_content = iv_content
ii_content = ii_content
@ -519,14 +516,14 @@ CLASS ZCL_ABAPGIT_HTML IMPLEMENTATION.
CLEAR lv_close_tag.
ENDIF.
add( lv_open_tag ).
zif_abapgit_html~add( lv_open_tag ).
IF ii_content IS BOUND.
add( ii_content ).
zif_abapgit_html~add( ii_content ).
ELSEIF iv_content IS NOT INITIAL.
add( iv_content ).
zif_abapgit_html~add( iv_content ).
ENDIF.
IF lv_close_tag IS NOT INITIAL.
add( `</` && iv_tag && `>` ).
zif_abapgit_html~add( `</` && iv_tag && `>` ).
ENDIF.
ri_self = me.