372115: added some braces to oneline if stmts of AsyncContextTest.java
This commit is contained in:
parent
54262c4ba5
commit
04c679dddb
|
@ -203,9 +203,13 @@ public class AsyncContextTest
|
||||||
{
|
{
|
||||||
final AsyncContext asyncContext;
|
final AsyncContext asyncContext;
|
||||||
if (request.getParameter("dispatchRequestResponse") != null)
|
if (request.getParameter("dispatchRequestResponse") != null)
|
||||||
|
{
|
||||||
asyncContext = request.startAsync(request,response);
|
asyncContext = request.startAsync(request,response);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
asyncContext = request.startAsync();
|
asyncContext = request.startAsync();
|
||||||
|
}
|
||||||
|
|
||||||
new Thread(new DispatchingRunnable(asyncContext)).start();
|
new Thread(new DispatchingRunnable(asyncContext)).start();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue