DO NOT REPLY [Bug 27855] New: - [PATCH]StructuralVerifier can't find protected fields of super classes
| Newsgroups | gmane.comp.jakarta.bcel.devel |
|---|---|
| Message-ID | <[email protected]> |
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=27855>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=27855
[PATCH]StructuralVerifier can't find protected fields of super classes
Summary: [PATCH]StructuralVerifier can't find protected fields of
super classes
Product: BCEL
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: Other
Component: Main
AssignedTo: [email protected]
ReportedBy: [email protected]
The InstConstraintVisitor didn't find a protected field
of the super class, like
abstract Town {
protected int size;
}
class NewYork extends Town {
public int getSize() {
return size;
}
}