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

@ -64,5 +64,5 @@ public interface Filter
* @return <code>true</code> if the record should be published,
* <code>false</code> if it should be discarded.
*/
public boolean isLoggable(LogRecord record);
boolean isLoggable(LogRecord record);
}

View file

@ -200,7 +200,7 @@ public class LogManager
{
/* FIXME: Is it ok to ignore exceptions here? */
}
};
}
private static LogManager makeLogManager()

View file

@ -195,7 +195,7 @@ public class XMLFormatter
long millis = record.getMillis();
Object[] params = record.getParameters();
ResourceBundle bundle = record.getResourceBundle();
String key, message;
String message;
buf.append("<record>");
buf.append(lineSep);