pretty print code

This commit is contained in:
larshp 2018-08-07 15:29:45 +02:00 committed by Lars Hvam
parent a1e010c0fc
commit 578640f844
2 changed files with 2 additions and 2 deletions

View File

@ -728,7 +728,7 @@ CLASS ZCL_ABAPGIT_GIT_PORCELAIN IMPLEMENTATION.
READ TABLE it_objects INTO ls_object READ TABLE it_objects INTO ls_object
WITH key type COMPONENTS WITH KEY type COMPONENTS
type = zif_abapgit_definitions=>gc_type-tree type = zif_abapgit_definitions=>gc_type-tree
sha1 = iv_tree. sha1 = iv_tree.
IF sy-subrc <> 0. IF sy-subrc <> 0.

View File

@ -129,7 +129,7 @@ FORM output.
TRY. TRY.
zcl_abapgit_gui=>get_instance( )->focus( ). zcl_abapgit_gui=>get_instance( )->focus( ).
CATCH zcx_abapgit_exception INTO lx_error. CATCH zcx_abapgit_exception INTO lx_error.
message lx_error type 'S' DISPLAY LIKE 'E'. MESSAGE lx_error TYPE 'S' DISPLAY LIKE 'E'.
ENDTRY. ENDTRY.
ENDFORM. ENDFORM.