372115: added some braces to oneline if stmts of AsyncContextTest.java

This commit is contained in:
Thomas Becker 2012-02-28 10:51:46 +01:00
parent 54262c4ba5
commit 04c679dddb
1 changed files with 4 additions and 0 deletions

View File

@ -203,9 +203,13 @@ public class AsyncContextTest
{
final AsyncContext asyncContext;
if (request.getParameter("dispatchRequestResponse") != null)
{
asyncContext = request.startAsync(request,response);
}
else
{
asyncContext = request.startAsync();
}
new Thread(new DispatchingRunnable(asyncContext)).start();
}