Assignment to 'for' Loop Variable (AFLV)

Description:

For-loop variables should not be assigned to.

Example:

for (int i = 0; i < charBuf.length; i++) {
    if ( Character.isWhitespace(charBuf[i]) )
        i++;
    ....
}