@@ -13,6 +13,8 @@ INTERFACE zif_diff3 PUBLIC.
1313
1414 TYPES ty_number TYPE i .
1515
16+ TYPES ty_numbers TYPE STANDARD TABLE OF ty_number WITH EMPTY KEY .
17+
1618 TYPES :
1719 BEGIN OF ty_number_number,
1820 key TYPE ty_number,
@@ -25,8 +27,7 @@ INTERFACE zif_diff3 PUBLIC.
2527 buffer1index TYPE ty_number,
2628 buffer2index TYPE ty_number,
2729 chain TYPE i , " ref to ilcsresult-key
28- END OF ty_lcs_result.
29- TYPES :
30+ END OF ty_lcs_result,
3031 ty_lcs_result_t TYPE SORTED TABLE OF ty_lcs_result WITH UNIQUE KEY key .
3132
3233 TYPES :
@@ -36,8 +37,7 @@ INTERFACE zif_diff3 PUBLIC.
3637 buffer1 TYPE string_table,
3738 buffer2 TYPE string_table,
3839 END OF diff,
39- END OF ty_comm_result.
40- TYPES :
40+ END OF ty_comm_result,
4141 ty_comm_result_t TYPE STANDARD TABLE OF ty_comm_result WITH DEFAULT KEY .
4242
4343 TYPES :
@@ -46,8 +46,7 @@ INTERFACE zif_diff3 PUBLIC.
4646 buffer1content TYPE string_table,
4747 buffer2 TYPE ty_number_number,
4848 buffer2content TYPE string_table,
49- END OF ty_diff_indices_result.
50- TYPES :
49+ END OF ty_diff_indices_result,
5150 ty_diff_indices_result_t TYPE STANDARD TABLE OF ty_diff_indices_result WITH DEFAULT KEY .
5251
5352 TYPES :
@@ -61,8 +60,7 @@ INTERFACE zif_diff3 PUBLIC.
6160 BEGIN OF ty_patch_result,
6261 buffer1 TYPE ty_chunk,
6362 buffer2 TYPE ty_chunk,
64- END OF ty_patch_result.
65- TYPES :
63+ END OF ty_patch_result,
6664 ty_patch_result_t TYPE STANDARD TABLE OF ty_patch_result WITH DEFAULT KEY .
6765
6866 TYPES :
@@ -90,8 +88,7 @@ INTERFACE zif_diff3 PUBLIC.
9088 stable TYPE abap_bool ,
9189 stable_region TYPE ty_stable_region,
9290 unstable_region TYPE ty_unstable_region,
93- END OF ty_region.
94- TYPES :
91+ END OF ty_region,
9592 ty_region_t TYPE STANDARD TABLE OF ty_region WITH DEFAULT KEY .
9693
9794 TYPES :
@@ -105,8 +102,7 @@ INTERFACE zif_diff3 PUBLIC.
105102 b TYPE string_table,
106103 b_index TYPE ty_number,
107104 END OF conflict,
108- END OF ty_merge_region.
109- TYPES :
105+ END OF ty_merge_region,
110106 ty_merge_region_t TYPE STANDARD TABLE OF ty_merge_region WITH DEFAULT KEY .
111107
112108 TYPES :
0 commit comments