From bbda8cd23cd658c05b426e74ac10a8f4c48ece75 Mon Sep 17 00:00:00 2001 From: mkoch Date: Fri, 9 Jan 2004 08:58:59 +0000 Subject: 2004-01-09 Michael Koch * 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. * java/awt/image/SinglePixelPackedSampleModel.java: Removed redundant semicolon. * java/io/ObjectInputStream.java (inputGetObjectStreamClasses): Removed unused variable "ret_val". * java/util/logging/Filter.java (isLoggable): Removed redundant modifier. * java/util/logging/LogManager.java: Removed redundant semicolon. * java/util/logging/XMLFormatter.java (format): Removed unused variable "key". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75570 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/awt/geom/PathIterator.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libjava/java/awt/geom/PathIterator.java') diff --git a/libjava/java/awt/geom/PathIterator.java b/libjava/java/awt/geom/PathIterator.java index 1d47431c30d..1fb0a46e0ff 100644 --- a/libjava/java/awt/geom/PathIterator.java +++ b/libjava/java/awt/geom/PathIterator.java @@ -59,24 +59,24 @@ public interface PathIterator * 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 @@ public interface PathIterator * = n! / (m! * (n-m)!) * */ - 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 @@ public interface PathIterator * = n! / (m! * (n-m)!) * */ - 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. -- cgit v1.2.3