mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
TABL bugfix, #296
This commit is contained in:
parent
4a8419ea80
commit
95c73d82b9
|
@ -3,7 +3,7 @@ REPORT zabapgit LINE-SIZE 100.
|
|||
* See http://www.abapgit.org
|
||||
|
||||
CONSTANTS: gc_xml_version TYPE string VALUE 'v1.0.0', "#EC NOTEXT
|
||||
gc_abap_version TYPE string VALUE 'v1.23.1'. "#EC NOTEXT
|
||||
gc_abap_version TYPE string VALUE 'v1.23.2'. "#EC NOTEXT
|
||||
|
||||
********************************************************************************
|
||||
* The MIT License (MIT)
|
||||
|
|
|
@ -696,13 +696,16 @@ CLASS lcl_objects IMPLEMENTATION.
|
|||
|
||||
METHOD compare_remote_to_local.
|
||||
|
||||
DATA ls_remote_file TYPE ty_file.
|
||||
DATA: ls_remote_file TYPE ty_file,
|
||||
lo_remote_version TYPE REF TO lcl_xml_input,
|
||||
lo_comparison_result TYPE REF TO lif_object_comparison_result.
|
||||
|
||||
DATA:
|
||||
lo_remote_version TYPE REF TO lcl_xml_input,
|
||||
lo_comparison_result TYPE REF TO lif_object_comparison_result.
|
||||
|
||||
IF is_result-filename CS '.XML'.
|
||||
IF io_object->exists( ) = abap_false.
|
||||
RETURN.
|
||||
ENDIF.
|
||||
|
||||
READ TABLE it_remote WITH KEY filename = is_result-filename INTO ls_remote_file.
|
||||
|
||||
"if file does not exist in remote, we don't need to validate
|
||||
|
|
Loading…
Reference in New Issue
Block a user