[kaffe] CVS kaffe (dalibor): Resynced with GNU Classpath
Kaffe CVS
cvs-commits at kaffe.org
Sat Jan 10 10:46:02 PST 2004
PatchSet 4307
Date: 2004/01/10 18:42:37
Author: dalibor
Branch: HEAD
Tag: (none)
Log:
Resynced with GNU Classpath
2004-01-09 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
2004-01-09 Michael Koch <konqueror at gmx.de>
* java/awt/geom/PathIterator.java
(WIND_EVEN_ODD): Removed redundant modifiers.
(WIND_NON_ZERO): Likewise.
(SEG_MOVETO): Likewise.
(SEG_LINETO): Likewise.
(SEG_QUADTO): Likewise.
(SEG_CUBICTO): Likewise.
(SEG_CLOSE): Likewise.
Members:
ChangeLog:1.1894->1.1895
libraries/javalib/java/awt/geom/PathIterator.java:1.4->1.5
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1894 kaffe/ChangeLog:1.1895
--- kaffe/ChangeLog:1.1894 Sat Jan 10 18:35:52 2004
+++ kaffe/ChangeLog Sat Jan 10 18:42:37 2004
@@ -2,6 +2,21 @@
Resynced with GNU Classpath.
+ 2004-01-09 Michael Koch <konqueror at gmx.de>
+
+ * java/awt/geom/PathIterator.java
+ (WIND_EVEN_ODD): Removed redundant modifiers.
+ (WIND_NON_ZERO): Likewise.
+ (SEG_MOVETO): Likewise.
+ (SEG_LINETO): Likewise.
+ (SEG_QUADTO): Likewise.
+ (SEG_CUBICTO): Likewise.
+ (SEG_CLOSE): Likewise.
+
+2004-01-09 Dalibor Topic <robilad at kaffe.org>
+
+ Resynced with GNU Classpath.
+
2004-01-06 Sascha Brawer <brawer at dandelis.ch>
* javax/swing/event/EventListenerList.java (toString): Implemented.
Index: kaffe/libraries/javalib/java/awt/geom/PathIterator.java
diff -u kaffe/libraries/javalib/java/awt/geom/PathIterator.java:1.4 kaffe/libraries/javalib/java/awt/geom/PathIterator.java:1.5
--- kaffe/libraries/javalib/java/awt/geom/PathIterator.java:1.4 Wed Oct 22 10:34:50 2003
+++ kaffe/libraries/javalib/java/awt/geom/PathIterator.java Sat Jan 10 18:42:38 2004
@@ -59,24 +59,24 @@
* from the point to infinity (in any direction) crosses an odd number of
* segments.
*/
- static final int WIND_EVEN_ODD = 0;
+ int WIND_EVEN_ODD = 0;
/**
* The non-zero winding mode: a point is internal to the shape if a ray
* from the point to infinity (in any direction) crosses a different number
* of segments headed clockwise than those headed counterclockwise.
*/
- static final int WIND_NON_ZERO = 1;
+ int WIND_NON_ZERO = 1;
/**
* Starts a new subpath. There is no segment from the previous vertex.
*/
- static final int SEG_MOVETO = 0;
+ int SEG_MOVETO = 0;
/**
* The current segment is a line.
*/
- static final int SEG_LINETO = 1;
+ int SEG_LINETO = 1;
/**
* The current segment is a quadratic parametric curve. It is interpolated
@@ -91,7 +91,7 @@
* = n! / (m! * (n-m)!)
* </pre>
*/
- static final int SEG_QUADTO = 2;
+ int SEG_QUADTO = 2;
/**
* The current segment is a cubic parametric curve (more commonly known as
@@ -107,13 +107,13 @@
* = n! / (m! * (n-m)!)
* </pre>
*/
- static final int SEG_CUBICTO = 3;
+ int SEG_CUBICTO = 3;
/**
* The current segment closes a loop by an implicit line to the previous
* SEG_MOVETO coordinate.
*/
- static final int SEG_CLOSE = 4;
+ int SEG_CLOSE = 4;
/**
* Returns the winding rule to determine which points are inside this path.
More information about the kaffe
mailing list