Skip to content

Commit 6aec70d

Browse files
committed
fixing check (broken ut)
1 parent 010318c commit 6aec70d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/checks/y_check_comment_usage.clas.abap

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@ CLASS y_check_comment_usage IMPLEMENTATION.
3333
settings-threshold = 10.
3434
settings-documentation = |{ c_docs_path-checks }comment-usage.md|.
3535

36-
relevant_statement_types = VALUE #( ( scan_struc_stmnt_type-class_pool )
37-
( scan_struc_stmnt_type-report )
38-
( scan_struc_stmnt_type-program )
39-
( scan_struc_stmnt_type-function_pool )
40-
( scan_struc_stmnt_type-interface_pool ) ).
36+
relevant_statement_types = VALUE #( ( scan_struc_stmnt_type-class_definition )
37+
( scan_struc_stmnt_type-class_implementation )
38+
( scan_struc_stmnt_type-interface )
39+
( scan_struc_stmnt_type-form )
40+
( scan_struc_stmnt_type-function )
41+
( scan_struc_stmnt_type-module ) ).
4142

4243
set_check_message( 'Percentage of comments must be lower than &3% of the productive code! (&2%>=&3%) (&1 lines found)' ).
4344
ENDMETHOD.

0 commit comments

Comments
 (0)