Add clarifying comment to exists check

Ref https://github.com/abapGit/abapGit/issues/7203#issuecomment-2792502949
This commit is contained in:
Marc Bernard 2025-04-10 18:31:39 +00:00
parent b55791765f
commit 1518cb84db

View File

@ -991,6 +991,9 @@ CLASS zcl_abapgit_objects IMPLEMENTATION.
RETURN. RETURN.
ENDIF. ENDIF.
" We want the object list of a repository to show unsupported object (without serializing them)
" This is why the follow check and the caught exception return true.
" For unsupported objects, assume object exists " For unsupported objects, assume object exists
IF is_type_supported( is_item-obj_type ) = abap_false. IF is_type_supported( is_item-obj_type ) = abap_false.
rv_bool = abap_true. rv_bool = abap_true.