You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by mu...@apache.org on 2009/04/03 16:31:59 UTC

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

Author: musachy
Date: Fri Apr  3 14:31:59 2009
New Revision: 761694

URL: http://svn.apache.org/viewvc?rev=761694&view=rev
Log:
Fix import of StringEscapeUtils

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

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Property.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Property.java?rev=761694&r1=761693&r2=761694&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Property.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Property.java Fri Apr  3 14:31:59 2009
@@ -24,11 +24,10 @@
 import java.io.IOException;
 import java.io.Writer;
 
-import org.apache.commons.lang.StringEscapeUtils;
-
 import org.apache.struts2.views.annotations.StrutsTag;
 import org.apache.struts2.views.annotations.StrutsTagAttribute;
 import org.apache.struts2.StrutsConstants;
+import org.apache.commons.lang.xwork.StringEscapeUtils;
 
 import com.opensymphony.xwork2.util.ValueStack;
 import com.opensymphony.xwork2.util.logging.Logger;