fix syntax (#6528)

This commit is contained in:
Lars Hvam 2023-10-03 17:41:49 +02:00 committed by GitHub
parent 796d645a3a
commit 6a792ddc6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -509,10 +509,10 @@ CLASS zcl_abapgit_serialize IMPLEMENTATION.
LOOP AT lt_unsupported_count ASSIGNING <ls_unsupported_count>.
IF <ls_unsupported_count>-count = 1.
mi_log->add_error( |Object type { <ls_unsupported_count>-obj_type } not supported, | &&
|<ls_unsupported_count>-obj_name } ignored| ).
|{ <ls_unsupported_count>-obj_name } ignored| ).
ELSE.
mi_log->add_error( |Object type { <ls_unsupported_count>-obj_type } not supported, | &&
|<ls_unsupported_count>-count } objects ignored| ).
|{ <ls_unsupported_count>-count } objects ignored| ).
ENDIF.
ENDLOOP.
ENDIF.