align use of unescape_url() (#4878)

This commit is contained in:
Lars Hvam 2021-07-29 16:49:38 +02:00 committed by GitHub
parent 8068e8fb0e
commit e075b951a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,7 +140,7 @@ CLASS zcl_abapgit_repo_online IMPLEMENTATION.
rv_name = super->get_name( ). rv_name = super->get_name( ).
IF rv_name IS INITIAL. IF rv_name IS INITIAL.
rv_name = zcl_abapgit_url=>name( ms_data-url ). rv_name = zcl_abapgit_url=>name( ms_data-url ).
rv_name = cl_http_utility=>if_http_utility~unescape_url( rv_name ). rv_name = cl_http_utility=>unescape_url( rv_name ).
ENDIF. ENDIF.
ENDMETHOD. ENDMETHOD.