You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2012/09/06 14:30:24 UTC

svn commit: r1381573 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/OptionTransferSelect.java

Author: lukaszlenart
Date: Thu Sep  6 12:30:24 2012
New Revision: 1381573

URL: http://svn.apache.org/viewvc?rev=1381573&view=rev
Log:
WW-3344 corrects mistake in an example

Modified:
    struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/OptionTransferSelect.java

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/OptionTransferSelect.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/OptionTransferSelect.java?rev=1381573&r1=1381572&r2=1381573&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/OptionTransferSelect.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/OptionTransferSelect.java Thu Sep  6 12:30:24 2012
@@ -21,18 +21,16 @@
 
 package org.apache.struts2.components;
 
-import java.util.LinkedHashMap;
-import java.util.Map;
-
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-import org.apache.struts2.views.annotations.StrutsTag;
-import org.apache.struts2.views.annotations.StrutsTagAttribute;
-
 import com.opensymphony.xwork2.util.ValueStack;
 import com.opensymphony.xwork2.util.logging.Logger;
 import com.opensymphony.xwork2.util.logging.LoggerFactory;
+import org.apache.struts2.views.annotations.StrutsTag;
+import org.apache.struts2.views.annotations.StrutsTagAttribute;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.util.LinkedHashMap;
+import java.util.Map;
 
 /**
  * <!-- START SNIPPET: javadoc -->
@@ -51,7 +49,7 @@ import com.opensymphony.xwork2.util.logg
  *
  * NOTE: The id and doubleId need not be supplied as they will generated provided
  * that the optiontransferselect tag is being used in a form tag. The generated id
- * and doubleId will be &lt;form_id&gt;_&lt;optiontransferselect_doubleName&gt; and
+ * and doubleId will be &lt;form_id&gt;_&lt;optiontransferselect_nameame&gt; and
  * &lt;form_id&gt;_&lt;optiontransferselect_doubleName&gt; respectively.
  *
  * <!-- END SNIPPET: notice -->