Consistent sort ordering of files (#2778)

This commit is contained in:
Frederik Hudák 2019-07-10 09:37:09 +02:00 committed by Lars Hvam
parent ce84d2455f
commit 0299fb61c7
2 changed files with 4 additions and 2 deletions

View File

@ -474,7 +474,9 @@ CLASS zcl_abapgit_gui_page_diff IMPLEMENTATION.
ENDLOOP.
ELSE. " Diff for the whole repo
SORT lt_status BY
path ASCENDING
filename ASCENDING.
LOOP AT lt_status ASSIGNING <ls_status> WHERE match IS INITIAL.
append_diff( it_remote = lt_remote
it_local = lt_local

View File

@ -254,7 +254,7 @@ CLASS ZCL_ABAPGIT_REPO_CONTENT_LIST IMPLEMENTATION.
SORT rt_repo_items BY
sortkey ASCENDING
obj_type ASCENDING
path ASCENDING
obj_name ASCENDING.
ENDMETHOD.