fix lintr

This commit is contained in:
Guenter Christian 2025-04-05 12:34:11 +00:00
parent 70e96bca11
commit 3e21d47bf4
2 changed files with 9 additions and 7 deletions

View File

@ -140,7 +140,9 @@ CLASS zcl_abapgit_repo_online IMPLEMENTATION.
lt_branches TYPE zif_abapgit_git_definitions=>ty_git_branch_list_tt, lt_branches TYPE zif_abapgit_git_definitions=>ty_git_branch_list_tt,
lv_display_name TYPE string. lv_display_name TYPE string.
lt_branches = zcl_abapgit_git_factory=>get_git_transport( )->branches( mi_repo_online->get_url( ) )->get_branches_only( ). lt_branches = zcl_abapgit_git_factory=>get_git_transport(
)->branches( mi_repo_online->get_url( )
)->get_branches_only( ).
READ TABLE lt_branches WITH TABLE KEY name_key READ TABLE lt_branches WITH TABLE KEY name_key
COMPONENTS name = iv_name COMPONENTS name = iv_name

View File

@ -125,13 +125,13 @@ INTERFACE zif_abapgit_repo
zcx_abapgit_exception . zcx_abapgit_exception .
METHODS switch_repo_type METHODS switch_repo_type
IMPORTING IMPORTING
iv_offline TYPE abap_bool iv_offline TYPE abap_bool
RAISING RAISING
zcx_abapgit_exception . zcx_abapgit_exception .
METHODS refresh_local_object METHODS refresh_local_object
IMPORTING IMPORTING
iv_obj_type TYPE tadir-object iv_obj_type TYPE tadir-object
iv_obj_name TYPE tadir-obj_name iv_obj_name TYPE tadir-obj_name
RAISING RAISING
zcx_abapgit_exception . zcx_abapgit_exception .
METHODS refresh_local_objects METHODS refresh_local_objects
@ -139,15 +139,15 @@ INTERFACE zif_abapgit_repo
zcx_abapgit_exception . zcx_abapgit_exception .
METHODS get_data_config METHODS get_data_config
RETURNING RETURNING
value(ri_config) TYPE REF TO zif_abapgit_data_config VALUE(ri_config) TYPE REF TO zif_abapgit_data_config
RAISING RAISING
zcx_abapgit_exception . zcx_abapgit_exception .
METHODS bind_listener METHODS bind_listener
IMPORTING IMPORTING
ii_listener TYPE REF TO zif_abapgit_repo_listener . ii_listener TYPE REF TO zif_abapgit_repo_listener .
METHODS remove_ignored_files METHODS remove_ignored_files
CHANGING CHANGING
ct_files TYPE zif_abapgit_git_definitions=>ty_files_tt ct_files TYPE zif_abapgit_git_definitions=>ty_files_tt
RAISING RAISING
zcx_abapgit_exception . zcx_abapgit_exception .