mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
fix filter_files_to_deserialize
in method zcl_abap_objects->filter_files_to_deserialize the object condense is done too early, need to be done at the end
This commit is contained in:
parent
48f6cb1bb1
commit
31fc55af56
|
@ -727,15 +727,15 @@ CLASS ZCL_ABAPGIT_OBJECTS IMPLEMENTATION.
|
|||
rt_results = it_results.
|
||||
|
||||
DELETE rt_results WHERE match = abap_true. " Full match
|
||||
DELETE rt_results WHERE obj_type IS INITIAL.
|
||||
DELETE rt_results WHERE lstate = zif_abapgit_definitions=>c_state-added AND rstate IS INITIAL.
|
||||
|
||||
SORT rt_results
|
||||
BY obj_type ASCENDING
|
||||
obj_name ASCENDING
|
||||
rstate DESCENDING. " ensures that non-empty rstate is kept
|
||||
DELETE ADJACENT DUPLICATES FROM rt_results COMPARING obj_type obj_name.
|
||||
|
||||
DELETE rt_results WHERE obj_type IS INITIAL.
|
||||
DELETE rt_results WHERE lstate = zif_abapgit_definitions=>c_state-added AND rstate IS INITIAL.
|
||||
|
||||
ENDMETHOD.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user