Skip to content

Commit

Permalink
Fix "empty" message text of check 63 (#1128)
Browse files Browse the repository at this point in the history
  • Loading branch information
ConjuringCoffee authored Feb 12, 2024
1 parent 86fed05 commit a6b37b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/checks/zcl_aoc_check_63.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENDCLASS.



CLASS ZCL_AOC_CHECK_63 IMPLEMENTATION.
CLASS zcl_aoc_check_63 IMPLEMENTATION.


METHOD constructor.
Expand All @@ -34,7 +34,7 @@ CLASS ZCL_AOC_CHECK_63 IMPLEMENTATION.

insert_scimessage(
iv_code = '001'
iv_text = '&1'(m01) ).
iv_text = TEXT-m01 ).

ENDMETHOD.

Expand Down
2 changes: 1 addition & 1 deletion src/checks/zcl_aoc_check_63.clas.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<item>
<ID>I</ID>
<KEY>M01</KEY>
<ENTRY>&amp;1</ENTRY>
<ENTRY>ABAP Doc: &amp;1</ENTRY>
<LENGTH>12</LENGTH>
</item>
</TPOOL>
Expand Down

0 comments on commit a6b37b7

Please sign in to comment.