Skip to content

Commit 73579ed

Browse files
authored
replace COND with xsdbool (#339)
1 parent 68dd3a3 commit 73579ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/checks/y_check_boolean_input_param.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ CLASS y_check_boolean_input_param IMPLEMENTATION.
5454

5555
METHOD is_setter_method.
5656
DATA(method_name) = get_token_abs( statement-from + 1 ).
57-
result = COND #( WHEN method_name CS 'SET_' THEN abap_true ).
57+
result = xsdbool( method_name CS 'SET_' ).
5858
ENDMETHOD.
5959

6060

0 commit comments

Comments
 (0)