mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
bugfix
This commit is contained in:
parent
b91c658583
commit
9dfec89cf1
|
@ -211,11 +211,11 @@ CLASS lcl_repo_content_list IMPLEMENTATION.
|
||||||
ENDAT.
|
ENDAT.
|
||||||
|
|
||||||
IF <status>-filename IS NOT INITIAL.
|
IF <status>-filename IS NOT INITIAL.
|
||||||
ls_file-path = <status>-path.
|
ls_file-path = <status>-path.
|
||||||
ls_file-filename = <status>-filename.
|
ls_file-filename = <status>-filename.
|
||||||
ls_file-is_changed = boolc( <status>-match = abap_false ). " TODO refactor
|
ls_file-is_changed = boolc( <status>-match = abap_false ). " TODO refactor
|
||||||
ls_file-rstate = <status>-rstate.
|
ls_file-rstate = <status>-rstate.
|
||||||
ls_file-lstate = <status>-lstate.
|
ls_file-lstate = <status>-lstate.
|
||||||
APPEND ls_file TO <ls_repo_item>-files.
|
APPEND ls_file TO <ls_repo_item>-files.
|
||||||
|
|
||||||
IF ls_file-is_changed = abap_true.
|
IF ls_file-is_changed = abap_true.
|
||||||
|
@ -224,8 +224,8 @@ CLASS lcl_repo_content_list IMPLEMENTATION.
|
||||||
|
|
||||||
lcl_state=>reduce( EXPORTING iv_cur = ls_file-lstate
|
lcl_state=>reduce( EXPORTING iv_cur = ls_file-lstate
|
||||||
CHANGING cv_prev = <ls_repo_item>-lstate ).
|
CHANGING cv_prev = <ls_repo_item>-lstate ).
|
||||||
lcl_state=>reduce( EXPORTING iv_cur = <ls_repo_item>-rstate
|
lcl_state=>reduce( EXPORTING iv_cur = ls_file-rstate
|
||||||
CHANGING cv_prev = ls_file-rstate ).
|
CHANGING cv_prev = <ls_repo_item>-rstate ).
|
||||||
ENDIF.
|
ENDIF.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user