From: markt Date: Thu, 7 Jan 2010 16:35:49 +0000 (+0000) Subject: Remove comments X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2462c29c8e1c2ed8690fd4ea838a3089d2a2c10a;p=tomcat7.0 Remove comments git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@896920 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/org/apache/el/TestELInJsp.java b/test/org/apache/el/TestELInJsp.java index c1a721f6b..f578e80bd 100644 --- a/test/org/apache/el/TestELInJsp.java +++ b/test/org/apache/el/TestELInJsp.java @@ -121,7 +121,7 @@ public class TestELInJsp extends TomcatBaseTest { 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 @@ public class TestELInJsp extends TomcatBaseTest { 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);