Update src/objects/zcl_abapgit_object_http.clas.abap

Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
This commit is contained in:
ThomasPloski 2024-12-05 08:46:16 +01:00 committed by GitHub
parent d8d854cd9b
commit 89f094d9f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -186,11 +186,7 @@ CLASS ZCL_ABAPGIT_OBJECT_HTTP IMPLEMENTATION.
DATA lv_id TYPE c LENGTH 30.
SELECT SINGLE id FROM ('uconhttpservhead') INTO lv_id WHERE id = ms_item-obj_name AND version = 'A'.
IF sy-subrc = 0.
rv_bool = abap_true.
ELSE.
rv_bool = abap_false.
ENDIF.
rv_bool = boolc( sy-subrc = 0 ).
CATCH cx_root.
zcx_abapgit_exception=>raise( 'HTTP not supported' ).
ENDTRY.