W3xx: Avoid diffs of parameters (#5231)

It's possible that systems return parameters unsorted causing diffs. Sorting the parameters will avoid this.
This commit is contained in:
Marc Bernard 2021-12-19 14:43:23 -05:00 committed by GitHub
parent c23357f22f
commit 089e04d7e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,6 +141,9 @@ CLASS zcl_abapgit_object_w3xx_super IMPLEMENTATION.
DELETE ct_params WHERE name = c_param_names-version.
DELETE ct_params WHERE name = c_param_names-filesize.
" Avoid diffs due to different order
SORT ct_params.
ENDMETHOD.