AuthenticationException.java, [...]: Cleaned up imports.

2004-04-21  Dalibor Topic  <robilad@kaffe.org>

	* javax/naming/AuthenticationException.java,
	javax/naming/AuthenticationNotSupportedException.java,
	javax/naming/CannotProceedException.java,
	javax/naming/CommunicationException.java,
	javax/naming/CompoundName.java,
	javax/naming/ConfigurationException.java,
	javax/naming/ContextNotEmptyException.java,
	javax/naming/InitialContext.java,
	javax/naming/InsufficientResourcesException.java,
	javax/naming/InterruptedNamingException.java,
	javax/naming/LimitExceededException.java,
	javax/naming/LinkException.java,
	javax/naming/LinkLoopException.java,
	javax/naming/LinkRef.java,
	javax/naming/MalformedLinkException.java,
	javax/naming/Name.java,
	javax/naming/NameAlreadyBoundException.java,
	javax/naming/NameNotFoundException.java,
	javax/naming/NamingSecurityException.java,
	javax/naming/NoInitialContextException.java,
	javax/naming/NoPermissionException.java,
	javax/naming/NotContextException.java,
	javax/naming/PartialResultException.java,
	javax/naming/ReferralException.java,
	javax/naming/ServiceUnavailableException.java,
	javax/naming/SizeLimitExceededException.java,
	javax/naming/TimeLimitExceededException.java,
	javax/naming/directory/Attribute.java,
	javax/naming/directory/Attributes.java,
	javax/naming/directory/SearchResult.java,
	javax/naming/event/NamingExceptionEvent.java,
	javax/naming/spi/ResolveResult.java:
	Cleaned up imports.

From-SVN: r80947
This commit is contained in:
Dalibor Topic 2004-04-21 07:18:04 +00:00 committed by Michael Koch
parent 2635995aca
commit 27dd18cf73
33 changed files with 76 additions and 69 deletions

View file

@ -1,3 +1,39 @@
2004-04-21 Dalibor Topic <robilad@kaffe.org>
* javax/naming/AuthenticationException.java,
javax/naming/AuthenticationNotSupportedException.java,
javax/naming/CannotProceedException.java,
javax/naming/CommunicationException.java,
javax/naming/CompoundName.java,
javax/naming/ConfigurationException.java,
javax/naming/ContextNotEmptyException.java,
javax/naming/InitialContext.java,
javax/naming/InsufficientResourcesException.java,
javax/naming/InterruptedNamingException.java,
javax/naming/LimitExceededException.java,
javax/naming/LinkException.java,
javax/naming/LinkLoopException.java,
javax/naming/LinkRef.java,
javax/naming/MalformedLinkException.java,
javax/naming/Name.java,
javax/naming/NameAlreadyBoundException.java,
javax/naming/NameNotFoundException.java,
javax/naming/NamingSecurityException.java,
javax/naming/NoInitialContextException.java,
javax/naming/NoPermissionException.java,
javax/naming/NotContextException.java,
javax/naming/PartialResultException.java,
javax/naming/ReferralException.java,
javax/naming/ServiceUnavailableException.java,
javax/naming/SizeLimitExceededException.java,
javax/naming/TimeLimitExceededException.java,
javax/naming/directory/Attribute.java,
javax/naming/directory/Attributes.java,
javax/naming/directory/SearchResult.java,
javax/naming/event/NamingExceptionEvent.java,
javax/naming/spi/ResolveResult.java:
Cleaned up imports.
2004-04-21 Mark Wielaard <mark@klomp.org> 2004-04-21 Mark Wielaard <mark@klomp.org>
* native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCheckboxPeer.c: * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCheckboxPeer.c:

View file

@ -1,5 +1,5 @@
/* AuthenticationException.java -- /* AuthenticationException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class AuthenticationException extends NamingSecurityException public class AuthenticationException extends NamingSecurityException
{ {

View file

@ -1,5 +1,5 @@
/* AuthenticationNotSupportedException.java -- /* AuthenticationNotSupportedException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class AuthenticationNotSupportedException public class AuthenticationNotSupportedException
extends NamingSecurityException extends NamingSecurityException

View file

@ -1,5 +1,5 @@
/* CannotProceedException.java -- /* CannotProceedException.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
import java.util.Hashtable; import java.util.Hashtable;
/** /**

View file

@ -1,5 +1,5 @@
/* CommunicationException.java -- /* CommunicationException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class CommunicationException extends NamingException public class CommunicationException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* CompoundName.java -- /* CompoundName.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -40,8 +40,8 @@ package javax.naming;
import java.io.Serializable; import java.io.Serializable;
import java.util.Enumeration; import java.util.Enumeration;
import java.util.Properties;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import java.util.Properties;
import java.util.Vector; import java.util.Vector;
/** /**

View file

@ -1,5 +1,5 @@
/* ConfigurationException.java -- /* ConfigurationException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class ConfigurationException extends NamingException public class ConfigurationException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* ContextNotEmptyException.java -- /* ContextNotEmptyException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class ContextNotEmptyException extends NamingException public class ContextNotEmptyException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* InitialContext.java -- /* InitialContext.java --
Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc. Copyright (C) 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -39,14 +39,13 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.applet.Applet; import java.applet.Applet;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.net.URL; import java.net.URL;
import java.util.Enumeration; import java.util.Enumeration;
import java.util.Hashtable; import java.util.Hashtable;
import java.util.Properties; import java.util.Properties;
import javax.naming.spi.NamingManager; import javax.naming.spi.NamingManager;
public class InitialContext implements Context public class InitialContext implements Context

View file

@ -1,5 +1,5 @@
/* InsufficientResourcesException.java -- /* InsufficientResourcesException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class InsufficientResourcesException extends NamingException public class InsufficientResourcesException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* InterruptedNamingException.java -- /* InterruptedNamingException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class InterruptedNamingException extends NamingException public class InterruptedNamingException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* LimitExceededException.java -- /* LimitExceededException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class LimitExceededException extends NamingException public class LimitExceededException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* LinkException.java -- /* LinkException.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy <warrenl@redhat.com>

View file

@ -1,5 +1,5 @@
/* LinkLoopException.java -- /* LinkLoopException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class LinkLoopException extends LinkException public class LinkLoopException extends LinkException
{ {

View file

@ -1,5 +1,5 @@
/* LinkRef.java -- /* LinkRef.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.io.Serializable;
/** /**
* @author Tom Tromey <tromey@redhat.com> * @author Tom Tromey <tromey@redhat.com>

View file

@ -1,5 +1,5 @@
/* MalformedLinkException.java -- /* MalformedLinkException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class MalformedLinkException extends LinkException public class MalformedLinkException extends LinkException
{ {

View file

@ -1,5 +1,5 @@
/* Name.java -- Name build up from different components /* Name.java -- Name build up from different components
Copyright (C) 2000, 2001 Free Software Foundation, Inc. Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -37,8 +37,8 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.util.Enumeration;
import java.io.Serializable; import java.io.Serializable;
import java.util.Enumeration;
/** /**
* Interface descriping a name build up from different components. * Interface descriping a name build up from different components.

View file

@ -1,5 +1,5 @@
/* NameAlreadyBoundException.java -- /* NameAlreadyBoundException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class NameAlreadyBoundException extends NamingException public class NameAlreadyBoundException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* NameNotFoundException.java -- /* NameNotFoundException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class NameNotFoundException extends NamingException public class NameNotFoundException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* NamingSecurityException.java -- /* NamingSecurityException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public abstract class NamingSecurityException extends NamingException public abstract class NamingSecurityException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* NoInitialContextException.java -- /* NoInitialContextException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class NoInitialContextException extends NamingException public class NoInitialContextException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* NoPermissionException.java -- /* NoPermissionException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class NoPermissionException extends NamingSecurityException public class NoPermissionException extends NamingSecurityException
{ {

View file

@ -1,5 +1,5 @@
/* NotContextException.java -- /* NotContextException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class NotContextException extends NamingException public class NotContextException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* PartialResultException.java -- /* PartialResultException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class PartialResultException extends NamingException public class PartialResultException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* ReferralException.java -- /* ReferralException.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
import java.util.Hashtable; import java.util.Hashtable;
/** /**

View file

@ -1,5 +1,5 @@
/* ServiceUnavailableException.java -- /* ServiceUnavailableException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class ServiceUnavailableException extends NamingException public class ServiceUnavailableException extends NamingException
{ {

View file

@ -1,5 +1,5 @@
/* SizeLimitExceededException.java -- /* SizeLimitExceededException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class SizeLimitExceededException extends LimitExceededException public class SizeLimitExceededException extends LimitExceededException
{ {

View file

@ -1,5 +1,5 @@
/* TimeLimitExceededException.java -- /* TimeLimitExceededException.java --
Copyright (C) 2000 Free Software Foundation, Inc. Copyright (C) 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming; package javax.naming;
import java.lang.Exception;
public class TimeLimitExceededException extends LimitExceededException public class TimeLimitExceededException extends LimitExceededException
{ {

View file

@ -1,5 +1,5 @@
/* Attribute.java -- /* Attribute.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -39,8 +39,7 @@ exception statement from your version. */
package javax.naming.directory; package javax.naming.directory;
import java.io.Serializable; import java.io.Serializable;
import javax.naming.Context;
import javax.naming.Name;
import javax.naming.NamingEnumeration; import javax.naming.NamingEnumeration;
import javax.naming.NamingException; import javax.naming.NamingException;

View file

@ -1,5 +1,5 @@
/* Attributes.java -- /* Attributes.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -39,8 +39,7 @@ exception statement from your version. */
package javax.naming.directory; package javax.naming.directory;
import java.io.Serializable; import java.io.Serializable;
import javax.naming.Context;
import javax.naming.Name;
import javax.naming.NamingEnumeration; import javax.naming.NamingEnumeration;
/** /**

View file

@ -1,5 +1,5 @@
/* SearchResult.java -- /* SearchResult.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -38,7 +38,6 @@ exception statement from your version. */
package javax.naming.directory; package javax.naming.directory;
import java.io.Serializable;
import javax.naming.Binding; import javax.naming.Binding;
/** /**

View file

@ -1,5 +1,5 @@
/* NamingExceptionEvent.java -- /* NamingExceptionEvent.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -39,8 +39,7 @@ exception statement from your version. */
package javax.naming.event; package javax.naming.event;
import java.util.EventObject; import java.util.EventObject;
import javax.naming.Context;
import javax.naming.Name;
import javax.naming.NamingException; import javax.naming.NamingException;
/** /**

View file

@ -1,5 +1,5 @@
/* ResolveResult.java -- /* ResolveResult.java --
Copyright (C) 2001 Free Software Foundation, Inc. Copyright (C) 2001, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -39,10 +39,10 @@ exception statement from your version. */
package javax.naming.spi; package javax.naming.spi;
import java.io.Serializable; import java.io.Serializable;
import java.util.EventObject;
import javax.naming.Name;
import javax.naming.CompositeName; import javax.naming.CompositeName;
import javax.naming.InvalidNameException; import javax.naming.InvalidNameException;
import javax.naming.Name;
/** /**
* @author Warren Levy <warrenl@redhat.com> * @author Warren Levy <warrenl@redhat.com>