You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by mi...@apache.org on 2012/08/25 12:53:24 UTC

svn commit: r1377259 - in /jmeter/trunk/src/functions/org/apache/jmeter/functions: EscapeHtml.java UnEscapeHtml.java

Author: milamber
Date: Sat Aug 25 10:53:23 2012
New Revision: 1377259

URL: http://svn.apache.org/viewvc?rev=1377259&view=rev
Log:
Fix Javadoc warning (since update to Commons-lang3)

Modified:
    jmeter/trunk/src/functions/org/apache/jmeter/functions/EscapeHtml.java
    jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java

Modified: jmeter/trunk/src/functions/org/apache/jmeter/functions/EscapeHtml.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/functions/org/apache/jmeter/functions/EscapeHtml.java?rev=1377259&r1=1377258&r2=1377259&view=diff
==============================================================================
--- jmeter/trunk/src/functions/org/apache/jmeter/functions/EscapeHtml.java (original)
+++ jmeter/trunk/src/functions/org/apache/jmeter/functions/EscapeHtml.java Sat Aug 25 10:53:23 2012
@@ -44,7 +44,7 @@ import org.apache.jmeter.util.JMeterUtil
  * Note that the commonly used apostrophe escape character (')
  * is not a legal entity and so is not supported). </p>
  * 
- * @see StringEscapeUtils#escapeHtml(String) (Commons Lang)
+ * @see StringEscapeUtils#escapeHtml4(String) (Commons Lang)
  * @since 2.3.3
  */
 public class EscapeHtml extends AbstractFunction {

Modified: jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java?rev=1377259&r1=1377258&r2=1377259&view=diff
==============================================================================
--- jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java (original)
+++ jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java Sat Aug 25 10:53:23 2012
@@ -40,7 +40,7 @@ import org.apache.jmeter.util.JMeterUtil
  * If an entity is unrecognized, it is left alone, and inserted verbatim into the result string.
  * e.g. "&amp;gt;&amp;zzzz;x" will become "&gt;&amp;zzzz;x".
  * </p>
- * @see org.apache.commons.lang3.StringEscapeUtils#unescapeHtml(String)
+ * @see org.apache.commons.lang3.StringEscapeUtils#unescapeHtml4(String)
  * @since 2.3.3
  */
 public class UnEscapeHtml extends AbstractFunction {