Fix code inspection output (#5211)

Fix typo in comparison of object and sub-object
This commit is contained in:
Marc Bernard 2021-12-13 15:16:07 -05:00 committed by GitHub
parent fe363f7b0a
commit 9d5018e39e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,7 +214,7 @@ CLASS zcl_abapgit_gui_page_codi_base IMPLEMENTATION.
IF is_result-sobjname IS INITIAL OR IF is_result-sobjname IS INITIAL OR
( is_result-sobjname = is_result-objname AND ( is_result-sobjname = is_result-objname AND
is_result-sobjtype = is_result-sobjtype ). is_result-sobjtype = is_result-objtype ).
lv_obj_txt = |{ is_result-objtype } { is_result-objname }|. lv_obj_txt = |{ is_result-objtype } { is_result-objname }|.
ELSEIF is_result-objtype = 'CLAS' OR ELSEIF is_result-objtype = 'CLAS' OR
( is_result-objtype = 'PROG' AND NOT is_result-sobjname+30(*) IS INITIAL ). ( is_result-objtype = 'PROG' AND NOT is_result-sobjname+30(*) IS INITIAL ).