mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
702 syntax warnings #1167
This commit is contained in:
parent
c739ed9d6e
commit
2389627be7
|
@ -350,12 +350,11 @@ CLASS lcl_http IMPLEMENTATION.
|
||||||
|
|
||||||
CALL FUNCTION 'ICM_GET_INFO2'
|
CALL FUNCTION 'ICM_GET_INFO2'
|
||||||
TABLES
|
TABLES
|
||||||
servlist = lt_list
|
servlist = lt_list
|
||||||
EXCEPTIONS
|
EXCEPTIONS
|
||||||
icm_error = 1
|
icm_error = 1
|
||||||
icm_timeout = 2
|
icm_timeout = 2
|
||||||
icm_not_authorized = 3
|
OTHERS = 3.
|
||||||
OTHERS = 4.
|
|
||||||
IF sy-subrc <> 0.
|
IF sy-subrc <> 0.
|
||||||
RETURN.
|
RETURN.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
|
@ -119,6 +119,7 @@ CLASS lcl_object_auth IMPLEMENTATION.
|
||||||
|
|
||||||
field = ms_item-obj_name.
|
field = ms_item-obj_name.
|
||||||
|
|
||||||
|
* TODO, this function module does not exist in 702
|
||||||
CALL FUNCTION 'SU20_MAINTAIN_SNGL'
|
CALL FUNCTION 'SU20_MAINTAIN_SNGL'
|
||||||
EXPORTING
|
EXPORTING
|
||||||
id_field = field
|
id_field = field
|
||||||
|
|
|
@ -46,7 +46,9 @@ CLASS lcl_oo_class_new DEFINITION INHERITING FROM lcl_oo_class.
|
||||||
it_source TYPE zif_abapgit_definitions=>ty_string_tt
|
it_source TYPE zif_abapgit_definitions=>ty_string_tt
|
||||||
iv_name TYPE seoclsname
|
iv_name TYPE seoclsname
|
||||||
RETURNING
|
RETURNING
|
||||||
VALUE(ro_scanner) TYPE REF TO cl_oo_source_scanner_class,
|
VALUE(ro_scanner) TYPE REF TO cl_oo_source_scanner_class
|
||||||
|
RAISING
|
||||||
|
zcx_abapgit_exception,
|
||||||
update_full_class_include
|
update_full_class_include
|
||||||
IMPORTING
|
IMPORTING
|
||||||
iv_classname TYPE seoclsname
|
iv_classname TYPE seoclsname
|
||||||
|
@ -138,10 +140,14 @@ CLASS lcl_oo_class_new IMPLEMENTATION.
|
||||||
|
|
||||||
METHOD init_scanner.
|
METHOD init_scanner.
|
||||||
|
|
||||||
ro_scanner = cl_oo_source_scanner_class=>create_class_scanner(
|
TRY.
|
||||||
clif_name = iv_name
|
ro_scanner = cl_oo_source_scanner_class=>create_class_scanner(
|
||||||
source = it_source ).
|
clif_name = iv_name
|
||||||
ro_scanner->scan( ).
|
source = it_source ).
|
||||||
|
ro_scanner->scan( ).
|
||||||
|
CATCH cx_clif_scan_error.
|
||||||
|
zcx_abapgit_exception=>raise( 'error initializing CLAS scanner' ).
|
||||||
|
ENDTRY.
|
||||||
|
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user