mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
Fixing bug in Status Bar message when there's only 1 thread. (#6783)
This commit is contained in:
parent
6d0f7de2f5
commit
4a36f0bb34
|
@ -658,14 +658,15 @@ CLASS zcl_abapgit_serialize IMPLEMENTATION.
|
|||
iv_count = lv_count )->start( ).
|
||||
|
||||
LOOP AT lt_tadir ASSIGNING <ls_tadir>.
|
||||
|
||||
li_progress->show(
|
||||
iv_current = sy-tabix
|
||||
iv_text = |Serialize { <ls_tadir>-obj_name }, { lv_max } threads| ).
|
||||
|
||||
IF lv_max = 1.
|
||||
li_progress->show(
|
||||
iv_current = sy-tabix
|
||||
iv_text = |Serialize { <ls_tadir>-obj_name }, { lv_max } thread| ).
|
||||
run_sequential( <ls_tadir> ).
|
||||
ELSE.
|
||||
li_progress->show(
|
||||
iv_current = sy-tabix
|
||||
iv_text = |Serialize { <ls_tadir>-obj_name }, { lv_max } threads| ).
|
||||
run_parallel(
|
||||
is_tadir = <ls_tadir>
|
||||
iv_task = |{ sy-tabix }| ).
|
||||
|
|
Loading…
Reference in New Issue
Block a user