This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Patch: RectangularShape.getPathIterator
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: RectangularShape.getPathIterator
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 27 Jul 2000 10:37:03 -0600
- Reply-To: tromey at cygnus dot com
I'm checking this in.
2000-07-22 Tom Tromey <tromey@cygnus.com>
* java/awt/geom/RectangularShape.java (getPathIterator):
Wrote.
Tom
Index: java/awt/geom/RectangularShape.java
===================================================================
RCS file: /cvs/java/libgcj/libjava/java/awt/geom/RectangularShape.java,v
retrieving revision 1.1
diff -u -r1.1 RectangularShape.java
--- RectangularShape.java 2000/07/23 00:24:14 1.1
+++ RectangularShape.java 2000/07/27 16:26:31
@@ -165,9 +165,7 @@
public PathIterator getPathIterator (AffineTransform at, double flatness)
{
- // FIXME
- // return new AffineTransform.Iterator (new Iterator ());
- return null;
+ return at.new Iterator (new Iterator ());
}
public Object clone ()