mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00

* UI: Clear progress bar Clears status/progress bar at end of process and removes leftover messages. Closes #3505 * Lint Co-authored-by: Lars Hvam <larshp@hotmail.com>
16 lines
346 B
ABAP
16 lines
346 B
ABAP
*"* use this source file for the definition and implementation of
|
|
*"* local helper classes, interface definitions and type
|
|
*"* declarations
|
|
|
|
|
|
CLASS lcl_dummy_progress IMPLEMENTATION.
|
|
METHOD zif_abapgit_progress~set_total.
|
|
ENDMETHOD.
|
|
|
|
METHOD zif_abapgit_progress~show.
|
|
ENDMETHOD.
|
|
|
|
METHOD zif_abapgit_progress~off.
|
|
ENDMETHOD.
|
|
ENDCLASS.
|