Author: sebb
Date: Mon May 18 01:28:40 2009
New Revision: 775790

URL: http://svn.apache.org/viewvc?rev=775790&view=rev
Log:
Fix up Javadoc; avoids UTF-8 warning with cedilla when compiling with Java 1.5+

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

Modified: 
jakarta/jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java?rev=775790&r1=775789&r2=775790&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java
 (original)
+++ 
jakarta/jmeter/trunk/src/functions/org/apache/jmeter/functions/UnEscapeHtml.java
 Mon May 18 01:28:40 2009
@@ -33,10 +33,14 @@
  * Function to unescape a string containing entity escapes
  * to a string containing the actual Unicode characters corresponding to the 
escapes. 
  * Supports HTML 4.0 entities.
- * For example, the string "&lt;Fran&ccedil;ais&gt;" will become "<Français>"
+ * <p>
+ * For example, the string "&amp;lt;Fran&amp;ccedil;ais&amp;gt;" will become 
"&lt;Fran&ccedil;ais&gt;"
+ * </p>
+ * <p>
  * If an entity is unrecognized, it is left alone, and inserted verbatim into 
the result string.
- * e.g. "&gt;&zzzz;x" will become ">&zzzz;x".
- * @see StringEscapeUtils#unescapeHtml(String) (Commons Lang)
+ * e.g. "&amp;gt;&amp;zzzz;x" will become "&gt;&amp;zzzz;x".
+ * </p>
+ * @see org.apache.commons.lang.StringEscapeUtils#unescapeHtml(String)
  */
 public class UnEscapeHtml extends AbstractFunction {
 



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org

Reply via email to