You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Emmanuel Bourg (JIRA)" <ji...@apache.org> on 2014/04/24 17:44:16 UTC

[jira] [Updated] (BCEL-44) StructuralVerifier can't find protected fields of super classes

     [ https://issues.apache.org/jira/browse/BCEL-44?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Emmanuel Bourg updated BCEL-44:
-------------------------------

          Component/s:     (was: Main)
                       Verifier
          Description: 
The InstConstraintVisitor didn't find a protected field of the super class, like:
{code}
abstract Town {
  protected int size;
}

class NewYork extends Town {
  public int getSize() {
    return size;
  }
}
{code}

  was:
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;
  }
}

             Priority: Major
          Environment:     (was: Operating System: other
Platform: Other)
    Affects Version/s:     (was: unspecified)
        Fix Version/s: 5.2
             Priority:   (was: P3)
             Severity:   (was: normal)
              Summary: StructuralVerifier can't find protected fields of super classes  (was: [PATCH]StructuralVerifier can't find protected fields of super classes)

> StructuralVerifier can't find protected fields of super classes
> ---------------------------------------------------------------
>
>                 Key: BCEL-44
>                 URL: https://issues.apache.org/jira/browse/BCEL-44
>             Project: Commons BCEL
>          Issue Type: Bug
>          Components: Verifier
>            Reporter: Stephan Michels
>            Assignee: Apache Commons Developers
>             Fix For: 5.2
>
>         Attachments: InstConstraintVisitor.java.diff
>
>
> The InstConstraintVisitor didn't find a protected field of the super class, like:
> {code}
> abstract Town {
>   protected int size;
> }
> class NewYork extends Town {
>   public int getSize() {
>     return size;
>   }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)