You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bcel-user@jakarta.apache.org by Edward Carter <ec...@u.arizona.edu> on 2003/08/08 15:13:22 UTC

bug in org.apache.bcel.util.BCELFactory, bcel 5.1

In BCELFactory.java, this method


  public void visitRET(RET i) {
    _out.println("il.append(new RET(" + i.getIndex() + ")));");
  }

has an extra close paren.  It should be this:


  public void visitRET(RET i) {
    _out.println("il.append(new RET(" + i.getIndex() + "));");
  }


---------------------------------------------------------------------
To unsubscribe, e-mail: bcel-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: bcel-user-help@jakarta.apache.org