From 7e4285c1a87d7e266ffd4f075b43e9a5d13b142d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20Hud=C3=A1k?= Date: Mon, 18 Jun 2018 09:21:51 +0200 Subject: [PATCH] Fixed error message when committing --- src/ui/zcl_abapgit_services_git.clas.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/zcl_abapgit_services_git.clas.abap b/src/ui/zcl_abapgit_services_git.clas.abap index fda6bca65..b5c1f3943 100644 --- a/src/ui/zcl_abapgit_services_git.clas.abap +++ b/src/ui/zcl_abapgit_services_git.clas.abap @@ -96,7 +96,7 @@ CLASS zcl_abapgit_services_git IMPLEMENTATION. ELSEIF is_commit-committer_email IS INITIAL. zcx_abapgit_exception=>raise( 'Commit: Committer email empty' ). ELSEIF is_commit-author_email IS NOT INITIAL AND is_commit-author_name IS INITIAL. - zcx_abapgit_exception=>raise( 'Commit: Author email empty' ). " Opposite should be OK ? + zcx_abapgit_exception=>raise( 'Commit: Author name empty' ). " Opposite should be OK ? ELSEIF is_commit-comment IS INITIAL. zcx_abapgit_exception=>raise( 'Commit: empty comment' ). ENDIF.