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

This commit is contained in:
Jesse McConnell 2012-03-05 08:44:38 -05:00 committed by Gerrit Code Review @ Eclipse.org
commit e417aa06ee
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();
}