[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug awt/25400] New: Area.subtract() hangs
From: |
david dot gilbert at object-refinery dot com |
Subject: |
[Bug awt/25400] New: Area.subtract() hangs |
Date: |
13 Dec 2005 22:20:18 -0000 |
Attached is a small test program that doesn't run to completion (i.e. hangs) on
JamVM 1.4.1 with a recent CVS version of Classpath. I came across this bug
while testing a demo program included with iText (1.3.6).
import java.awt.geom.Area;
import java.awt.geom.Ellipse2D;
public class Test {
public static void main(String[] args) {
Ellipse2D ellipse1 = new Ellipse2D.Double(75.0, 33.0, 40.0, 40.0);
Ellipse2D ellipse2 = new Ellipse2D.Double(78.0, 28.0, 50.0, 50.0);
Area a1 = new Area(ellipse1);
Area a2 = new Area(ellipse2);
a1.subtract(a2);
System.out.println(a1);
}
}
--
Summary: Area.subtract() hangs
Product: classpath
Version: 0.19
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: awt
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: david dot gilbert at object-refinery dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25400
- [Bug awt/25400] New: Area.subtract() hangs,
david dot gilbert at object-refinery dot com <=