Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtools committed Apr 24, 2022
1 parent f49a718 commit 179a853
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/zcl_emoji.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,11 @@ CLASS zcl_emoji DEFINITION
PROTECTED SECTION.
PRIVATE SECTION.

CONSTANTS gc_emoji_list TYPE progname VALUE 'ZEMOJI_LIST'.
CONSTANTS c_emoji_list TYPE progname VALUE 'ZEMOJI_LIST'.

CLASS-DATA gt_emoji TYPE HASHED TABLE OF string WITH UNIQUE KEY table_line.

CLASS-METHODS init_emoji.

ENDCLASS.


Expand Down Expand Up @@ -94,7 +93,7 @@ CLASS zcl_emoji IMPLEMENTATION.

FIELD-SYMBOLS <lv_emoji> LIKE LINE OF gt_emoji.

READ REPORT gc_emoji_list INTO lt_emoji.
READ REPORT c_emoji_list INTO lt_emoji.
ASSERT sy-subrc = 0.

LOOP AT lt_emoji ASSIGNING <lv_emoji> WHERE table_line CP '" *'.
Expand Down

0 comments on commit 179a853

Please sign in to comment.