mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
But It's generate a lot of DIFF, when XML remote has the INDEX filled.
This commit is contained in:
parent
04e196b816
commit
7d587e1a1a
|
@ -706,8 +706,8 @@ CLASS ZCL_ABAPGIT_OBJECT_FUGR IMPLEMENTATION.
|
|||
lt_new_source TYPE rsfb_source,
|
||||
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( ).
|
||||
|
||||
|
@ -750,6 +750,10 @@ CLASS ZCL_ABAPGIT_OBJECT_FUGR IMPLEMENTATION.
|
|||
zcx_abapgit_exception=>raise( 'Error from RPY_FUNCTIONMODULE_READ_NEW' ).
|
||||
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 ).
|
||||
|
||||
APPEND ls_function TO rt_functions.
|
||||
|
|
Loading…
Reference in New Issue
Block a user