From 578640f84407bb420fef4eea4bba86dd8879b25b Mon Sep 17 00:00:00 2001 From: larshp Date: Tue, 7 Aug 2018 15:29:45 +0200 Subject: [PATCH] pretty print code --- src/git/zcl_abapgit_git_porcelain.clas.abap | 2 +- src/zabapgit_forms.prog.abap | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git/zcl_abapgit_git_porcelain.clas.abap b/src/git/zcl_abapgit_git_porcelain.clas.abap index 26431f2d0..d4c8366df 100644 --- a/src/git/zcl_abapgit_git_porcelain.clas.abap +++ b/src/git/zcl_abapgit_git_porcelain.clas.abap @@ -728,7 +728,7 @@ CLASS ZCL_ABAPGIT_GIT_PORCELAIN IMPLEMENTATION. READ TABLE it_objects INTO ls_object - WITH key type COMPONENTS + WITH KEY type COMPONENTS type = zif_abapgit_definitions=>gc_type-tree sha1 = iv_tree. IF sy-subrc <> 0. diff --git a/src/zabapgit_forms.prog.abap b/src/zabapgit_forms.prog.abap index 2d0e57569..af1a023ba 100644 --- a/src/zabapgit_forms.prog.abap +++ b/src/zabapgit_forms.prog.abap @@ -129,7 +129,7 @@ FORM output. TRY. zcl_abapgit_gui=>get_instance( )->focus( ). CATCH zcx_abapgit_exception INTO lx_error. - message lx_error type 'S' DISPLAY LIKE 'E'. + MESSAGE lx_error TYPE 'S' DISPLAY LIKE 'E'. ENDTRY. ENDFORM.