NO-JIRA: fix formatting

This commit is contained in:
Christopher L. Shannon 2024-04-11 10:02:27 -04:00
parent 8b6072d03e
commit 45a1bd54d3
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ public class AsyncServletRequest implements AsyncListener {
// error. The spec requires a 500 error on timeout unless complete() is called.
context.complete();
final ServletResponse response = context.getResponse();
if (response instanceof HttpServletResponse) {
if (response instanceof HttpServletResponse) {
((HttpServletResponse) response).setStatus(HttpServletResponse.SC_NO_CONTENT);
}
}