Clean-up slow_parameter_passing (#6577)

Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
Marc Bernard 2023-10-26 10:40:32 -04:00 committed by GitHub
parent 46d0d597ca
commit b4cc162a2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 19 additions and 19 deletions

View File

@ -446,6 +446,7 @@
"unnecessary_pragma": {
"allowNoTextGlobal": true
},
"slow_parameter_passing": true,
"double_space": true,
"whitespace_end": true
},
@ -453,7 +454,6 @@
"select_add_order_by": {
"skipForAllEntries": true
},
"slow_parameter_passing": true,
"select_single_full_key": true
}
}

View File

@ -15,7 +15,7 @@ INTERFACE zif_abapgit_background
VALUE(rv_description) TYPE string .
CLASS-METHODS get_settings
CHANGING
VALUE(ct_settings) TYPE ty_settings_tt .
ct_settings TYPE ty_settings_tt .
METHODS run
IMPORTING
!io_repo TYPE REF TO zcl_abapgit_repo_online

View File

@ -10,7 +10,7 @@ INTERFACE lif_package_interface_facade.
set_elements_changeable
IMPORTING
VALUE(iv_changeable) TYPE abap_bool
iv_changeable TYPE abap_bool
RAISING
zcx_abapgit_exception,
@ -26,7 +26,7 @@ INTERFACE lif_package_interface_facade.
set_changeable
IMPORTING
VALUE(iv_changeable) TYPE abap_bool
iv_changeable TYPE abap_bool
RAISING
zcx_abapgit_exception,

View File

@ -34,7 +34,7 @@ CLASS zcl_abapgit_object_ueno DEFINITION
METHODS build_text_name
IMPORTING VALUE(iv_id) TYPE tdid
IMPORTING iv_id TYPE tdid
RETURNING VALUE(rv_result) TYPE doku_obj.
METHODS is_name_permitted
@ -85,7 +85,7 @@ CLASS zcl_abapgit_object_ueno DEFINITION
zcx_abapgit_exception.
METHODS serialize_docu_xxxx
IMPORTING VALUE(iv_id) TYPE tdid
IMPORTING iv_id TYPE tdid
RETURNING VALUE(rt_result) TYPE ty_docu_lines.
METHODS serialize_docu_usp

View File

@ -66,7 +66,7 @@ CLASS ltcl_serialize DEFINITION FOR TESTING RISK LEVEL HARMLESS DURATION SHORT F
METHODS:
check
IMPORTING VALUE(is_item) TYPE zif_abapgit_definitions=>ty_item
IMPORTING is_item TYPE zif_abapgit_definitions=>ty_item
RAISING zcx_abapgit_exception,
serialize_tabl FOR TESTING RAISING zcx_abapgit_exception,
serialize_shlp FOR TESTING RAISING zcx_abapgit_exception,

View File

@ -66,7 +66,7 @@ CLASS zcl_abapgit_dot_abapgit DEFINITION
zcx_abapgit_exception .
METHODS set_i18n_languages
IMPORTING
VALUE(it_languages) TYPE zif_abapgit_definitions=>ty_languages
it_languages TYPE zif_abapgit_definitions=>ty_languages
RAISING
zcx_abapgit_exception .
METHODS get_signature

View File

@ -37,7 +37,7 @@ CLASS zcl_abapgit_gui_page_merge DEFINITION
!is_result TYPE zif_abapgit_git_definitions=>ty_expanded .
METHODS build_menu
IMPORTING
VALUE(iv_with_conflict) TYPE abap_bool OPTIONAL
!iv_with_conflict TYPE abap_bool OPTIONAL
RETURNING
VALUE(ro_menu) TYPE REF TO zcl_abapgit_html_toolbar .
ENDCLASS.

View File

@ -63,12 +63,12 @@ CLASS zcx_abapgit_exception DEFINITION
"! @raising zcx_abapgit_exception | Exception
CLASS-METHODS raise_t100
IMPORTING
VALUE(iv_msgid) TYPE symsgid DEFAULT sy-msgid
VALUE(iv_msgno) TYPE symsgno DEFAULT sy-msgno
VALUE(iv_msgv1) TYPE symsgv DEFAULT sy-msgv1
VALUE(iv_msgv2) TYPE symsgv DEFAULT sy-msgv2
VALUE(iv_msgv3) TYPE symsgv DEFAULT sy-msgv3
VALUE(iv_msgv4) TYPE symsgv DEFAULT sy-msgv4
!iv_msgid TYPE symsgid DEFAULT sy-msgid
!iv_msgno TYPE symsgno DEFAULT sy-msgno
!iv_msgv1 TYPE symsgv DEFAULT sy-msgv1
!iv_msgv2 TYPE symsgv DEFAULT sy-msgv2
!iv_msgv3 TYPE symsgv DEFAULT sy-msgv3
!iv_msgv4 TYPE symsgv DEFAULT sy-msgv4
!ii_log TYPE REF TO zif_abapgit_log OPTIONAL
!ix_previous TYPE REF TO cx_root OPTIONAL
!iv_longtext TYPE csequence OPTIONAL