Hello all,

I just committed the following patch to make compilation work again.
Thanks to gnu_andrew :)

Andreas

2006-08-04  Andreas Tobler  <[EMAIL PROTECTED]>

        * java/awt/BasicStroke.java (dashedStroke): Cast coords.clone to
        double[].

Index: java/awt/BasicStroke.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/awt/BasicStroke.java,v
retrieving revision 1.16
diff -u -r1.16 BasicStroke.java
--- java/awt/BasicStroke.java   4 Aug 2006 20:42:42 -0000       1.16
+++ java/awt/BasicStroke.java   4 Aug 2006 21:59:28 -0000
@@ -554,7 +554,7 @@
                 // segment spans a dash boundry
                 else
                   {
-                    segmentEnd = coords.clone();
+                    segmentEnd = (double[]) coords.clone();

                     // Calculate the remaining distance in this dash,
                     // and coordinates of the dash boundary

Reply via email to