Hello,

I have tried Unused local variables function on our biggest project and it doesn't compile after that. Reason is that we have multi-line function definitions on it.

Supose something like this:
Code:
Function MyFunction Global String sParamN1 Integer iParamN2 Integer iParamN3 Integer iParamN4 String sParamN5 ;
    Number nParamN6 Number nParamN7 Number nParamN8 Number nParamN9 Number nParamN10 String sParamN11 Returns Boolean
It gets refactored to (pay attention to Returns keyword...):
Code:
Function MyFunction Global String sParamN1 Integer iParamN2 Integer iParamN3 Integer iParamN4 String sParamN5 ;
    Number nParamN6 Number nParamN7 Number nParamN8 Number nParamN9 Number nParamN10 String sParamN11 Boolean
Regards.