mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 13:03:01 +08:00
Fix deserialization with unsupported object type
This commit is contained in:
parent
2fb622e028
commit
ea29dc8c03
|
@ -700,13 +700,14 @@ CLASS ZCL_ABAPGIT_OBJECTS IMPLEMENTATION.
|
||||||
|
|
||||||
DATA: li_object TYPE REF TO zif_abapgit_object.
|
DATA: li_object TYPE REF TO zif_abapgit_object.
|
||||||
|
|
||||||
li_object = create_object( is_item = is_item
|
|
||||||
iv_language = sy-langu ).
|
|
||||||
|
|
||||||
TRY.
|
TRY.
|
||||||
|
li_object = create_object( is_item = is_item
|
||||||
|
iv_language = sy-langu ).
|
||||||
|
|
||||||
rv_active = li_object->is_active( ).
|
rv_active = li_object->is_active( ).
|
||||||
CATCH cx_sy_dyn_call_illegal_method
|
CATCH cx_sy_dyn_call_illegal_method
|
||||||
cx_sy_ref_is_initial.
|
cx_sy_ref_is_initial
|
||||||
|
zcx_abapgit_exception.
|
||||||
rv_active = abap_true.
|
rv_active = abap_true.
|
||||||
ENDTRY.
|
ENDTRY.
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user