View by Classes

Findings - Overview

warning Dead store to local variable (Findbugs)

Further info on the wiki.

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.

1org.jcoderz.guidelines.snippets.SampleSnippets
Dead store to result in org.jcoderz.guidelines.snippets.SampleSnippets.whitespace() [242]
1org.jcoderz.commons.connector.file.FsManagedConnectionFactoryImpl
Dead store to info in org.jcoderz.commons.connector.file.FsManagedConnectionFactoryImpl.createManagedConnectionImpl(UserPassword, ConnectionRequestInfo) [88]
1org.jcoderz.commons.DevelopersLogFormatter
Dead store to loggable in org.jcoderz.commons.DevelopersLogFormatter.format(LogRecord) [81]
1org.jcoderz.phoenix.report.samples.SimplePmdFindings
Dead store to b in org.jcoderz.phoenix.report.samples.SimplePmdFindings.bool() (sample) [109]