diff options
author | Mark Wielaard <mark@klomp.org> | 2006-06-15 18:09:24 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2006-06-15 18:09:24 +0000 |
commit | 7f936c3ec1ccb4c423112c6f54c281625ebe3ad9 (patch) | |
tree | 9eb83a4b098068bc83d6194e5f2063a861377297 | |
parent | aa181320ebd8fed87e209cd7c54e63d58136ef23 (diff) | |
download | classpath-7f936c3ec1ccb4c423112c6f54c281625ebe3ad9.tar.gz |
* java/awt/BasicStroke.java (createStrokedShape): Call getPathIterator
with null argument.
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | java/awt/BasicStroke.java | 2 |
2 files changed, 9 insertions, 4 deletions
@@ -1,7 +1,12 @@ -2006-06-15 Kyle Galloway <kgallowa@redhat.com> +2006-06-15 Mark Wielaard <mark@klomp.org> - * gnu/classpath/jdwp/event/filters/ExceptionOnlyFilter.java - (matches): Added explicit brackets to return statement. + * java/awt/BasicStroke.java (createStrokedShape): Call getPathIterator + with null argument. + +2006-06-15 Kyle Galloway <kgallowa@redhat.com> + + * gnu/classpath/jdwp/event/filters/ExceptionOnlyFilter.java + (matches): Added explicit brackets to return statement. 2006-06-15 Tania Bento <tbento@redhat.com> diff --git a/java/awt/BasicStroke.java b/java/awt/BasicStroke.java index 3e259216f..cb8ef49ae 100644 --- a/java/awt/BasicStroke.java +++ b/java/awt/BasicStroke.java @@ -260,7 +260,7 @@ public class BasicStroke implements Stroke */ public Shape createStrokedShape(Shape s) { - PathIterator pi = s.getPathIterator( new AffineTransform() ); + PathIterator pi = s.getPathIterator(null); if( dash == null ) return solidStroke( pi ); |