[multiple changes]
2004-04-23 Dalibor Topic <robilad@kaffe.org> * java/util/jar/JarFile.java, java/util/jar/JarInputStream.java, java/util/jar/JarOutputStream.java, java/util/jar/Manifest.java: Cleaned up imports. 2004-04-23 Dalibor Topic <robilad@kaffe.org> * java/util/ArrayList.java, java/util/Calendar.java, java/util/Currency.java, java/util/HashMap.java, java/util/HashSet.java, java/util/Hashtable.java, java/util/LinkedList.java, java/util/Properties.java, java/util/PropertyPermission.java, java/util/TimeZone.java, java/util/TreeMap.java, java/util/TreeSet.java, java/util/Vector.java, java/util/WeakHashMap.java: Cleaned up imports. 2004-04-23 Dalibor Topic <robilad@kaffe.org> * java/util/logging/FileHandler.java, java/util/logging/Formatter.java, java/util/logging/Handler.java, java/util/logging/Logger.java, java/util/logging/SimpleFormatter.java, java/util/logging/XMLFormatter.java: Cleaned up imports. From-SVN: r81077
This commit is contained in:
committed by
Michael Koch
parent
78bad7752e
commit
ace7ed7c24
@@ -1,7 +1,7 @@
|
||||
/* FileHandler.java
|
||||
-- a class for publishing log messages to log files
|
||||
|
||||
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@@ -41,9 +41,9 @@ exception statement from your version.
|
||||
|
||||
package java.util.logging;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.File;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* A <code>FileHandler</code> publishes log records to a set of log
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
-- a class for formatting log messages by localizing message texts
|
||||
and performing substitution of parameters
|
||||
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@@ -43,8 +43,8 @@ exception statement from your version.
|
||||
|
||||
package java.util.logging;
|
||||
|
||||
import java.util.ResourceBundle;
|
||||
import java.text.MessageFormat;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
/**
|
||||
* A <code>Formatter</code> supports handlers by localizing
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* Handler.java
|
||||
-- a class for publishing log messages
|
||||
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@@ -43,7 +43,6 @@ exception statement from your version.
|
||||
package java.util.logging;
|
||||
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.security.AccessController;
|
||||
|
||||
/**
|
||||
* A <code>Handler</code> publishes <code>LogRecords</code> to
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* Logger.java
|
||||
-- a class for logging messages
|
||||
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@@ -42,9 +42,9 @@ exception statement from your version.
|
||||
|
||||
package java.util.logging;
|
||||
|
||||
import java.util.ResourceBundle;
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.List;
|
||||
import java.util.MissingResourceException;
|
||||
import java.util.ResourceBundle;
|
||||
|
||||
/**
|
||||
* A Logger is used for logging information about events. Usually, there
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* SimpleFormatter.java
|
||||
-- a class for formatting log records into short human-readable messages
|
||||
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@@ -42,8 +42,8 @@ exception statement from your version.
|
||||
|
||||
package java.util.logging;
|
||||
|
||||
import java.util.Date;
|
||||
import java.text.DateFormat;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* A <code>SimpleFormatter</code> formats log records into
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* XMLFormatter.java
|
||||
-- a class for formatting log messages into a standard XML format
|
||||
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@@ -42,10 +42,9 @@ exception statement from your version.
|
||||
|
||||
package java.util.logging;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
import java.util.ResourceBundle;
|
||||
import java.text.MessageFormat;
|
||||
import java.text.SimpleDateFormat;
|
||||
|
||||
/**
|
||||
* An <code>XMLFormatter</code> formats LogRecords into
|
||||
|
||||
Reference in New Issue
Block a user