Issue #2780 - making servlet output reliable for EOL
This commit is contained in:
parent
8eb11a56c8
commit
7ad182fbcf
|
@ -190,7 +190,7 @@ public class GzipHandlerTest
|
|||
for (Enumeration<String> e = req.getParameterNames(); e.hasMoreElements(); )
|
||||
{
|
||||
String n = e.nextElement();
|
||||
response.getWriter().printf("%s: %s%n",n,req.getParameter(n));
|
||||
response.getWriter().printf("%s: %s\n",n,req.getParameter(n));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue