Commit 3a7ab7e8 by Michael Koch Committed by Michael Koch

Calendar.java, [...]: Import used classes explicitely.

2003-12-09  Michael Koch  <konqueror@gmx.de>

	* java/util/Calendar.java,
	java/util/IdentityHashMap.java,
	java/util/prefs/Preferences.java:
	Import used classes explicitely.

From-SVN: r74471
parent defd7921
2003-12-09 Michael Koch <konqueror@gmx.de> 2003-12-09 Michael Koch <konqueror@gmx.de>
* java/util/Calendar.java,
java/util/IdentityHashMap.java,
java/util/prefs/Preferences.java:
Import used classes explicitely.
2003-12-09 Michael Koch <konqueror@gmx.de>
* java/net/DatagramSocket.java * java/net/DatagramSocket.java
(close): Directly return if socket is closed. (close): Directly return if socket is closed.
* java/net/ServerSocket.java * java/net/ServerSocket.java
......
...@@ -37,8 +37,12 @@ exception statement from your version. */ ...@@ -37,8 +37,12 @@ exception statement from your version. */
package java.util; package java.util;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.io.*; import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
/** /**
* This class is an abstract base class for Calendars, which can be * This class is an abstract base class for Calendars, which can be
......
...@@ -38,7 +38,10 @@ exception statement from your version. */ ...@@ -38,7 +38,10 @@ exception statement from your version. */
package java.util; package java.util;
import java.io.*; import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
/** /**
* This class provides a hashtable-backed implementation of the * This class provides a hashtable-backed implementation of the
......
...@@ -45,7 +45,7 @@ import java.security.AccessController; ...@@ -45,7 +45,7 @@ import java.security.AccessController;
import java.security.Permission; import java.security.Permission;
import java.security.PrivilegedAction; import java.security.PrivilegedAction;
import gnu.java.util.prefs.*; import gnu.java.util.prefs.NodeReader;
/** /**
* Preference node containing key value entries and subnodes. * Preference node containing key value entries and subnodes.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment