But It's generate a lot of DIFF, when XML remote has the INDEX filled.
This commit is contained in:
Italo N 2019-10-31 11:07:59 -03:00 committed by Lars Hvam
parent 04e196b816
commit 7d587e1a1a

View File

@ -706,8 +706,8 @@ CLASS ZCL_ABAPGIT_OBJECT_FUGR IMPLEMENTATION.
lt_new_source TYPE rsfb_source, lt_new_source TYPE rsfb_source,
ls_function LIKE LINE OF rt_functions. ls_function LIKE LINE OF rt_functions.
FIELD-SYMBOLS: <ls_func> LIKE LINE OF lt_functab. FIELD-SYMBOLS: <ls_func> LIKE LINE OF lt_functab,
<ls_documentation> TYPE LINE OF ty_function-documentation.
lt_functab = functions( ). lt_functab = functions( ).
@ -750,6 +750,10 @@ CLASS ZCL_ABAPGIT_OBJECT_FUGR IMPLEMENTATION.
zcx_abapgit_exception=>raise( 'Error from RPY_FUNCTIONMODULE_READ_NEW' ). zcx_abapgit_exception=>raise( 'Error from RPY_FUNCTIONMODULE_READ_NEW' ).
ENDIF. ENDIF.
LOOP AT ls_function-documentation ASSIGNING <ls_documentation>.
CLEAR <ls_documentation>-index.
ENDLOOP.
ls_function-exception_classes = are_exceptions_class_based( <ls_func>-funcname ). ls_function-exception_classes = are_exceptions_class_based( <ls_func>-funcname ).
APPEND ls_function TO rt_functions. APPEND ls_function TO rt_functions.