You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
METHOD PRIVATE VOID foo (
i_cbar AS CHARACTER // <-- flagged as unused
):
MESSAGE
i_cbar // <-- used here
( IF TRUE THEN 'boo':u ELSE 'boo':u )
.
END METHOD.
If I concatenate the parameter in the message, the warning goes away:
METHOD PRIVATE VOID foo (
i_cbar AS CHARACTER
):
MESSAGE
i_cbar + ' ':u +
( IF TRUE THEN 'boo':u ELSE 'boo':u )
.
END METHOD.
The text was updated successfully, but these errors were encountered:
If I concatenate the parameter in the message, the warning goes away:
The text was updated successfully, but these errors were encountered: