mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
downport to 702, #878
This commit is contained in:
parent
606423912c
commit
af93a489db
|
@ -501,8 +501,8 @@ CLASS lcl_http IMPLEMENTATION.
|
||||||
METHOD is_local_system.
|
METHOD is_local_system.
|
||||||
|
|
||||||
DATA: lv_host TYPE string,
|
DATA: lv_host TYPE string,
|
||||||
lt_list TYPE lif_defs=>ty_icm_sinfo2_tt.
|
lt_list TYPE lif_defs=>ty_icm_sinfo2_tt,
|
||||||
|
li_exit TYPE ref to lif_exit.
|
||||||
|
|
||||||
CALL FUNCTION 'ICM_GET_INFO2'
|
CALL FUNCTION 'ICM_GET_INFO2'
|
||||||
TABLES
|
TABLES
|
||||||
|
@ -516,6 +516,9 @@ CLASS lcl_http IMPLEMENTATION.
|
||||||
RETURN.
|
RETURN.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
|
li_exit = lcl_exit=>get_instance( ).
|
||||||
|
li_exit->change_local_host( CHANGING ct_hosts = lt_list ).
|
||||||
|
|
||||||
lcl_exit=>get_instance( )->change_local_host( CHANGING ct_hosts = lt_list ).
|
lcl_exit=>get_instance( )->change_local_host( CHANGING ct_hosts = lt_list ).
|
||||||
|
|
||||||
FIND REGEX 'https?://([^/^:]*)' IN iv_url
|
FIND REGEX 'https?://([^/^:]*)' IN iv_url
|
||||||
|
|
|
@ -2037,11 +2037,10 @@ CLASS ltcl_html_action_utils IMPLEMENTATION.
|
||||||
|
|
||||||
METHOD _hex_to_char.
|
METHOD _hex_to_char.
|
||||||
|
|
||||||
cl_abap_conv_in_ce=>create( )->convert(
|
DATA lr_conv TYPE REF TO cl_abap_conv_in_ce.
|
||||||
EXPORTING
|
|
||||||
input = i_x
|
lr_conv = cl_abap_conv_in_ce=>create( ).
|
||||||
IMPORTING
|
lr_conv->convert( EXPORTING input = i_x IMPORTING data = r_s ).
|
||||||
data = r_s ).
|
|
||||||
|
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user