Skip to content

Commit

Permalink
fixing (#515)
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Borin <5233413+lucasborin@users.noreply.github.co>
  • Loading branch information
lucasborin and Lucas Borin authored Nov 3, 2021
1 parent 14b18b8 commit dd4ca0e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/foundation/y_check_base.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -697,8 +697,12 @@ CLASS Y_CHECK_BASE IMPLEMENTATION.
CHECK settings-pseudo_comment IS NOT INITIAL.
CHECK check_configuration-ignore_pseudo_comments = abap_false.

DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
p_stmt_idx = statement_index ).
TRY.
DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
p_stmt_idx = statement_index ).
CATCH cx_ci_quickfix_failed.
RETURN.
ENDTRY.

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

Expand Down

0 comments on commit dd4ca0e

Please sign in to comment.