Minor fixes/changes (#4665)

* remove assert, remove unused variable

* update documentation, follow-up to #4663
This commit is contained in:
g-back 2021-03-24 13:34:02 +01:00 committed by GitHub
parent cfcee287a8
commit eee6b00378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -7,9 +7,12 @@ order: 80
abapGit can pull or push in background mode. This setting has to be activated on the repository-level.
### Activating Background Mode
* Navigate to a repository and select "Advanced" -> "Background Mode"
* Navigate to a repository, go to the repository settings and select "Background":
![](img/background_setting.png)
![](img/background_setting_1.png)
![](img/background_setting_2.png)
* Here you can define the action that will be executed in background mode, by default the setting is "Do Nothing".

View File

@ -26,7 +26,6 @@ CLASS zcl_abapgit_gui_page_ch_remote DEFINITION
go_back TYPE string VALUE 'go_back',
save TYPE string VALUE 'save',
END OF c_event .
DATA mv_key TYPE zif_abapgit_persistence=>ty_repo-key .
DATA mo_repo TYPE REF TO zcl_abapgit_repo_online .
ENDCLASS.
@ -86,7 +85,6 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_CH_REMOTE IMPLEMENTATION.
WHEN c_event-save.
lv_url = condense( ii_event->form_data( )->get( c_remote_field ) ).
ASSERT NOT lv_url IS INITIAL.
zcl_abapgit_repo_srv=>get_instance( )->validate_url( lv_url ).