2004-01-09 Michael Koch <konqueror@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.
	* 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".

From-SVN: r75570
This commit is contained in:
Michael Koch 2004-01-09 08:58:59 +00:00 committed by Michael Koch
parent 90e4e4c58d
commit bbe4ef8921
7 changed files with 32 additions and 13 deletions

View file

@ -47,7 +47,7 @@ public class SinglePixelPackedSampleModel extends SampleModel
private int scanlineStride;
private int[] bitMasks;
private int[] bitOffsets;
private int[] sampleSize;;
private int[] sampleSize;
public SinglePixelPackedSampleModel(int dataType, int w, int h,
int[] bitMasks)