Skip to content

Commit dd4ca0e

Browse files
lucasborinLucas Borin
andauthored
fixing (#515)
Co-authored-by: Lucas Borin <5233413+lucasborin@users.noreply.github.co>
1 parent 14b18b8 commit dd4ca0e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/foundation/y_check_base.clas.abap

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -697,8 +697,12 @@ CLASS Y_CHECK_BASE IMPLEMENTATION.
697697
CHECK settings-pseudo_comment IS NOT INITIAL.
698698
CHECK check_configuration-ignore_pseudo_comments = abap_false.
699699

700-
DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
701-
p_stmt_idx = statement_index ).
700+
TRY.
701+
DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
702+
p_stmt_idx = statement_index ).
703+
CATCH cx_ci_quickfix_failed.
704+
RETURN.
705+
ENDTRY.
702706

703707
DATA(quickfix) = quickfix_factory->create_quickfix( ).
704708

0 commit comments

Comments
 (0)