code pal for ABAP > Documentation > Comment Type
Comments with "
, not with *
, because asterisked comments tend to indent to weird places.
Replacing the comment type from *
to "
.
Before the check:
METHOD do_it.
IF input IS NOT INITIAL.
* delegate pattern
output = calculate_result( input ).
ENDIF.
ENDMETHOD.
After the check:
METHOD do_it.
IF input IS NOT INITIAL.
" delegate pattern
output = calculate_result( input ).
ENDIF.
ENDMETHOD.