As of the 14.0.0 code, there are cases where logic branches on IF statements that do not have fall-through ELSE clause. Adding this code with a warning message will ensure that input is always handled.
Code will need to be reviewed top to bottom for such cases.
As of the 14.0.0 code, there are cases where logic branches on
IF
statements that do not have fall-throughELSE
clause. Adding this code with a warning message will ensure that input is always handled.Code will need to be reviewed top to bottom for such cases.