From a2f61c40b864cec75f8984f75d4d97a894aee1e5 Mon Sep 17 00:00:00 2001 From: Nuno Godinho Date: Wed, 8 Feb 2017 09:30:34 +0000 Subject: [PATCH] Renamed variable to comply with naming conventions t_files_local > lt_files_local --- src/zabapgit_page_stage.prog.abap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zabapgit_page_stage.prog.abap b/src/zabapgit_page_stage.prog.abap index 624b09a1b..2b4f85f7a 100644 --- a/src/zabapgit_page_stage.prog.abap +++ b/src/zabapgit_page_stage.prog.abap @@ -271,10 +271,10 @@ CLASS lcl_gui_page_stage IMPLEMENTATION. METHOD read_last_changed_by. DATA: ls_local_file TYPE ty_file_item, - t_files_local type ty_files_item_tt. + lt_files_local type ty_files_item_tt. TRY. - t_files_local = mo_repo->get_files_local( ). - READ TABLE t_files_local INTO ls_local_file WITH KEY file = is_file. + lt_files_local = mo_repo->get_files_local( ). + READ TABLE lt_files_local INTO ls_local_file WITH KEY file = is_file. IF sy-subrc = 0. rv_user = lcl_objects=>changed_by( ls_local_file-item ). ENDIF.