Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed May 6, 2024
1 parent 9770ea6 commit 5e438b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions abaplint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
"check_include": false, // todo
"uncaught_exception": false, // todo
"align_type_expressions": false, // todo
"dynpro_checks": true,
"easy_to_find_messages": false,
"invalid_table_index": true,
"no_prefixes": false,
"prefer_pragmas": true,
"reduce_procedural_code": false,
"smim_consistency": true,
"sql_value_conversion": true,
"cds_comment_style": true,
"change_if_to_case": false,
"expand_macros": true,
Expand Down
2 changes: 1 addition & 1 deletion src/json/#ui2#cl_json.clas.locals_imp.abap
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ CLASS lcl_stack IMPLEMENTATION.
FIELD-SYMBOLS <ls_data> LIKE LINE OF mt_stack.
lv_index = lines( mt_stack ).
IF lv_index > 0.
READ TABLE mt_stack ASSIGNING <ls_data> INDEX lv_index. "#EC CI_SUBRC
READ TABLE mt_stack ASSIGNING <ls_data> INDEX lv_index ##SUBRC_OK.
rv_name = <ls_data>-name.
DELETE mt_stack INDEX lv_index.
ENDIF.
Expand Down

0 comments on commit 5e438b4

Please sign in to comment.