hey scott,

don't bother man, I already did this and I rewrite most of it anyway. (like
the configuration service is going the way of the dodo...

I guess it is a good thing for 2.4 though... man these are a pain to fix
aren't they?

BTW for all coders:

the best way is NEVER PUT A WILDCARD and then either you remember to add the
class everytime you use a new type either you let the compiler barf and you
go adding the classes one by one.

Of course it ends up being a mix a both.

marcf

|-----Original Message-----
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of
|[EMAIL PROTECTED]
|Sent: Friday, June 22, 2001 11:56 PM
|To: [EMAIL PROTECTED]
|Subject: [JBoss-dev] CVS update: jboss/src/main/org/jboss/configuration
|ConfigurationService.java
|
|
|  User: starksm
|  Date: 01/06/22 20:55:35
|
|  Modified:    src/main/org/jboss/configuration ConfigurationService.java
|  Log:
|  Fix the wildcard import statements
|
|  Revision  Changes    Path
|  1.33      +26 -6
|jboss/src/main/org/jboss/configuration/ConfigurationService.java
|
|  Index: ConfigurationService.java
|  ===================================================================
|  RCS file:
|/cvsroot/jboss/jboss/src/main/org/jboss/configuration/Configuration
|Service.java,v
|  retrieving revision 1.32
|  retrieving revision 1.33
|  diff -u -r1.32 -r1.33
|  --- ConfigurationService.java        2001/06/23 03:33:28     1.32
|  +++ ConfigurationService.java        2001/06/23 03:55:35     1.33
|  @@ -19,12 +19,32 @@
|   import java.util.Hashtable;
|   import java.util.Iterator;
|
|  -import javax.management.*;
|  +import javax.management.Attribute;
|  +import javax.management.InstanceNotFoundException;
|  +import javax.management.JMException;
|  +import javax.management.JMRuntimeException;
|  +import javax.management.MalformedObjectNameException;
|  +import javax.management.MBeanInfo;
|  +import javax.management.MBeanAttributeInfo;
|  +import javax.management.MBeanOperationInfo;
|  +import javax.management.MBeanException;
|  +import javax.management.MBeanServer;
|  +import javax.management.ObjectInstance;
|  +import javax.management.ObjectName;
|  +import javax.management.ReflectionException;
|  +import javax.management.RuntimeErrorException;
|  +import javax.management.RuntimeMBeanException;
|  +import javax.management.RuntimeOperationsException;
|  +
|  +import org.w3c.dom.Document;
|  +import org.w3c.dom.Element;
|  +import org.w3c.dom.NodeList;
|  +import org.w3c.dom.Text;
|  +import org.xml.sax.InputSource;
|  +import org.xml.sax.SAXException;
|  +import javax.xml.parsers.DocumentBuilderFactory;
|  +import javax.xml.parsers.DocumentBuilder;
|
|  -import org.w3c.dom.*;
|  -import org.xml.sax.*;
|  -import javax.xml.parsers.*;
|  -
|   import org.jboss.logging.Log;
|   import org.jboss.util.Service;
|   import org.jboss.util.ServiceFactory;
|  @@ -46,7 +66,7 @@
|    * @author  <a href="mailto:[EMAIL PROTECTED]";>Rickard Öberg</a>.
|    * @author  <a href="mailto:[EMAIL PROTECTED]";>Scott
|Stark</a>.
|    * @author  <a href="mailto:[EMAIL PROTECTED]";>Jason Dillon</a>
|  - * @version $Revision: 1.32 $
|  + * @version $Revision: 1.33 $
|    * Revisions:
|    *
|    * 20010622 scott.stark: Clean up the unsafe downcast of
|Throwable to Exception
|
|
|
|
|_______________________________________________
|Jboss-development mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-development



_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to