Merge pull request #1497 from christianguenter2/issue_1493

Pass log object to user exit method change_tadir
This commit is contained in:
Lars Hvam 2018-06-14 06:28:46 +02:00 committed by GitHub
commit b7fc27cfcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -108,6 +108,7 @@ CLASS zcl_abapgit_exit IMPLEMENTATION.
gi_exit->change_tadir(
EXPORTING
iv_package = iv_package
io_log = io_log
CHANGING
ct_tadir = ct_tadir ).
CATCH cx_sy_ref_is_initial cx_sy_dyn_call_illegal_method.

View File

@ -224,6 +224,7 @@ CLASS ZCL_ABAPGIT_TADIR IMPLEMENTATION.
zcl_abapgit_exit=>get_instance( )->change_tadir(
EXPORTING
iv_package = iv_package
io_log = io_log
CHANGING
ct_tadir = rt_tadir ).

View File

@ -32,6 +32,7 @@ INTERFACE zif_abapgit_exit PUBLIC.
change_tadir
IMPORTING
iv_package TYPE devclass
io_log TYPE REF TO zcl_abapgit_log
CHANGING
ct_tadir TYPE ty_tadir_tt.