abapGit/src/zif_abapgit_code_inspector.intf.abap
Lars Hvam ffcd6c82ed
Refactor code inspector (#2412)
* delete method GET_INSPECTION

delete method GET_INSPECTION, not called from anywhere

* delete class ZCL_ABAPGIT_ABAP_UNIT_TESTS

* delete class ZCL_ABAPGIT_SYNTAX_CHECK

* delete class ZCL_ABAPGIT_ADHOC_CODE_INSP

* move VARIANT to importing in RUN

instead of in the constructor

* one variable containing the name

instaed of 2 with same contents

* linting
2019-02-19 21:37:40 -08:00

13 lines
222 B
ABAP

INTERFACE zif_abapgit_code_inspector
PUBLIC .
METHODS run
IMPORTING
!iv_variant TYPE sci_chkv
RETURNING
VALUE(rt_list) TYPE scit_alvlist
RAISING
zcx_abapgit_exception .
ENDINTERFACE.