Author: martinc
Date: Sun Oct 24 12:23:54 2004
New Revision: 55459

Modified:
   struts/trunk/src/share/org/apache/struts/action/ActionServletWrapper.java
Log:
Mixing imports and fully qualified class names just bugs me. ;-)

Modified: struts/trunk/src/share/org/apache/struts/action/ActionServletWrapper.java
==============================================================================
--- struts/trunk/src/share/org/apache/struts/action/ActionServletWrapper.java   
(original)
+++ struts/trunk/src/share/org/apache/struts/action/ActionServletWrapper.java   Sun 
Oct 24 12:23:54 2004
@@ -19,6 +19,7 @@
 
 package org.apache.struts.action;
 
+import java.io.Serializable;
 import org.apache.struts.upload.MultipartRequestHandler;
 
 
@@ -32,7 +33,7 @@
  * @version $Rev$ $Date$
  * @since Struts 1.0.1
  */
-public class ActionServletWrapper implements java.io.Serializable {
+public class ActionServletWrapper implements Serializable {
 
     /**
      * <p>The servlet instance to which we are attached.</p>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to