arturobernalg opened a new pull request #78: URL: https://github.com/apache/commons-fileupload/pull/78
When I running `mvn -V package --file pom.xml --no-transfer-progress spotbugs:check` i'm getting DLS_DEAD_LOCAL_STORE error. Which is --> DLS: Dead store to local variable (DLS_DEAD_LOCAL_STORE) This instruction assigns a value to a local variable, but the value is not read or used in any subsequent instruction. Often, this indicates an error, because the value computed is never used. Note that Sun's javac compiler often generates dead stores for final local variables. Because FindBugs is a bytecode-based tool, there is no easy way to eliminate these false positives. In order to avoid break the compilation while I analizy all the errors, we ignore this error -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
