Re: [cp-patches] FYI: Fix for PR34991

2009-01-07 Thread Roman Kennke
Hi, -draw(new Polygon(xPoints, yPoints, nPoints)); +for (int i = 1; i nPoints; i++) + draw(new Line2D.Double(xPoints[i - 1], yPoints[i - 1], + xPoints[i], yPoints[i])); Hi Robert, Line2D instances are mutable (via setLine() methods) so

[cp-patches] [builder] FYI: Update RunJapi to do a comparison between Classpath in full and libgcj/jikesrvm

2009-01-07 Thread Andrew John Hughes
This patch creates a new JAPI file, classpath-full.japi.gz which contains all classes (i.e. including gnu and sun ones), which is then used to give a comparison between Classpath CVS and the derivatives, libgcj and jikesrvm. ChangeLog: 2009-01-07 Andrew John Hughes gnu_and...@member.fsf.org

Re: [cp-patches] FYI: Fix for PR34991

2009-01-07 Thread Robert Schuster
Hi, thanks for the hint I will rework it that way. Regards Robert David Gilbert schrieb: Robert Schuster wrote: -draw(new Polygon(xPoints, yPoints, nPoints)); +for (int i = 1; i nPoints; i++) + draw(new Line2D.Double(xPoints[i - 1], yPoints[i - 1], +