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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to