This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
Dead Code: Unused Field
This is a Vulnerability. To view all vulnerabilities, please see the Vulnerability Category page.
Abstract
This field is never used.
Description
This field is never accessed, except perhaps by dead code. It is likely that the field is simply vestigial, but it is also possible that the unused field points out a bug.
Examples
Example 1:
The field named glue is not used in the following class. The author of the class has accidentally put quotes around the field name, transforming it into a string constant.
public class Dead {
String glue;
public String getGlue() {
return "glue";
}
}
Example 2:
The field named glue is used in the following class, but only from a method that is never called.
public class Dead {
String glue;
private String getGlue() {
return glue;
}
}