è un problema con la classe inner, la variabile deve essere final


From the JLS (§8.1.2):
"Any local variable, formal method parameter or exception handler parameter
used but not declared in an inner class must be declared final, and must be
definitely assigned (§16) before the body of the inner class."

When using local inner classes, any variables local to the method that are accessed from within the inner class must be declared final.