mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
Merge pull request #1492 from christianguenter2/1355
disable "no changes" for offline projects
This commit is contained in:
commit
f846f250a6
|
@ -47,7 +47,7 @@ ENDCLASS.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CLASS ZCL_ABAPGIT_REPO_CONTENT_LIST IMPLEMENTATION.
|
CLASS zcl_abapgit_repo_content_list IMPLEMENTATION.
|
||||||
|
|
||||||
|
|
||||||
METHOD build_folders.
|
METHOD build_folders.
|
||||||
|
@ -209,7 +209,8 @@ CLASS ZCL_ABAPGIT_REPO_CONTENT_LIST IMPLEMENTATION.
|
||||||
CHANGING ct_repo_items = rt_repo_items ).
|
CHANGING ct_repo_items = rt_repo_items ).
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
IF iv_changes_only = abap_true.
|
IF iv_changes_only = abap_true AND mo_repo->is_offline( ) = abap_false.
|
||||||
|
" There are never changes for offline repositories
|
||||||
filter_changes( CHANGING ct_repo_items = rt_repo_items ).
|
filter_changes( CHANGING ct_repo_items = rt_repo_items ).
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user