Author: markt
Date: Thu Jan 7 16:35:49 2010
New Revision: 896920
URL: http://svn.apache.org/viewvc?rev=896920&view=rev
Log:
Remove comments
Modified:
tomcat/trunk/test/org/apache/el/TestELInJsp.java
Modified: tomcat/trunk/test/org/apache/el/TestELInJsp.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/el/TestELInJsp.java?rev=896920&r1=896919&r2=896920&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/el/TestELInJsp.java (original)
+++ tomcat/trunk/test/org/apache/el/TestELInJsp.java Thu Jan 7 16:35:49 2010
@@ -121,7 +121,7 @@
tomcat.start();
- ByteChunk res = /* getUrl("http://localhost:" + getPort() +
+ ByteChunk res = getUrl("http://localhost:" + getPort() +
"/test/bug45451a.jsp");
String result = res.toString();
@@ -131,8 +131,8 @@
assertTrue(result.indexOf("02-\\'hello world\\'") > 0);
assertTrue(result.indexOf("03-\\'hello world\\'") > 0);
- res = */ getUrl("http://localhost:" + getPort() +
"/test/bug45451b.jsp");
- String result = res.toString();
+ res = getUrl("http://localhost:" + getPort() + "/test/bug45451b.jsp");
+ result = res.toString();
// Warning: JSP attribute escaping != Java String escaping
assertTrue(result.indexOf("00-2") > 0);
assertTrue(result.indexOf("01-${1+1}") > 0);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]