Using X# 2.21.0.5
I don't know if this has to be reported or not.
In VO I've the following code:
Code: Select all
LOCAL lSuccess AS LOGIC
IF lSuccess := ( ALen( auBalancesID ) ) > 0
// some stuff
ENDIF
XS0219 The variable 'lSuccess' is assigned but its value is never used
if I change the code in:
Code: Select all
LOCAL lSuccess AS LOGIC
lSuccess := ( ALen( auBalancesID ) ) > 0
IF lSuccess
// some stuff
ENDIF
It is intended to work this way?
Sorry for newbie question, still learning.
Stefano