We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d9512c commit ab966b7Copy full SHA for ab966b7
2 files changed
abaplint.json
@@ -441,7 +441,7 @@
441
"severity": "Error"
442
},
443
"nesting": {
444
- "depth": 5,
+ "depth": 8,
445
"exclude": [],
446
447
src/zcl_diff3.clas.abap
@@ -698,9 +698,13 @@ CLASS zcl_diff3 IMPLEMENTATION.
698
DATA(lv_s) = lv_r.
699
DO.
700
IF lv_s < lines( lt_candidates ).
701
- IF lt_candidates[ key = lv_s ]-buffer2index < lv_j AND
702
- ( lv_s = lines( lt_candidates ) - 1 OR lt_candidates[ key = lv_s + 1 ]-buffer2index > lv_j ).
703
- EXIT.
+ IF lt_candidates[ key = lv_s ]-buffer2index < lv_j.
+ IF lv_s = lines( lt_candidates ) - 1.
+ EXIT.
704
+ ENDIF.
705
+ IF lt_candidates[ key = lv_s + 1 ]-buffer2index > lv_j.
706
707
708
ENDIF.
709
ELSE.
710
EXIT.
0 commit comments