Author: wesw
Date: Tue Jun  9 14:15:54 2009
New Revision: 783012

URL: http://svn.apache.org/viewvc?rev=783012&view=rev
Log:
Fixed comment, removed unused import WW-3100

Modified:
    
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/Dispatcher.java

Modified: 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/Dispatcher.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/Dispatcher.java?rev=783012&r1=783011&r2=783012&view=diff
==============================================================================
--- 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/Dispatcher.java
 (original)
+++ 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/Dispatcher.java
 Tue Jun  9 14:15:54 2009
@@ -59,7 +59,6 @@
 import com.opensymphony.xwork2.ActionProxyFactory;
 import com.opensymphony.xwork2.ObjectFactory;
 import com.opensymphony.xwork2.Result;
-import com.opensymphony.xwork2.UnknownHandler;
 import com.opensymphony.xwork2.config.Configuration;
 import com.opensymphony.xwork2.config.ConfigurationException;
 import com.opensymphony.xwork2.config.ConfigurationManager;
@@ -694,7 +693,7 @@
         String content_type = request.getContentType();
         if (content_type != null && 
content_type.indexOf("multipart/form-data") != -1) {
             MultiPartRequest mpr = null;
-            //add all available UnknownHandlers
+            //check for alternate implementations of MultiPartRequest
             Set<String> multiNames = 
getContainer().getInstanceNames(MultiPartRequest.class);
             if (multiNames != null) {
                 for (String multiName : multiNames) {


Reply via email to