Diff: Fix refresh of single file (#6524)

This commit is contained in:
Marc Bernard 2023-10-02 12:06:32 -04:00 committed by GitHub
parent 923849d8d3
commit 58d2ebfc65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -807,8 +807,8 @@ CLASS zcl_abapgit_gui_page_diff IMPLEMENTATION.
IF sy-subrc = 0. IF sy-subrc = 0.
mo_repo->refresh_local_object( mo_repo->refresh_local_object(
iv_obj_type = lv_obj_type iv_obj_type = to_upper( lv_obj_type )
iv_obj_name = lv_obj_name ). iv_obj_name = to_upper( lv_obj_name ) ).
ELSE. ELSE.
zcx_abapgit_exception=>raise( |Invalid refresh action { iv_action }| ). zcx_abapgit_exception=>raise( |Invalid refresh action { iv_action }| ).
ENDIF. ENDIF.