Fixing checkstyle violations

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-11-10 06:33:04 -06:00
parent 0a345420ff
commit 21c27f6370
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
2 changed files with 4 additions and 2 deletions

View File

@ -1262,7 +1262,7 @@ public class ServletHolder extends Holder<Servlet> implements UserIdentity.Scope
public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException
{
if (LOG.isDebugEnabled())
LOG.debug("Unavailable {}", req, _unavailableException);
LOG.debug("Unavailable {}", req, _unavailableException);
if (_unavailableStart == null)
{
((HttpServletResponse)res).sendError(HttpServletResponse.SC_NOT_FOUND);

View File

@ -51,7 +51,9 @@ public class InfoServlet extends HttpServlet
{
out.printf("%16s => %s%n", bean.getName(), bean);
for (InjectionPoint ij : bean.getInjectionPoints())
out.printf("%16s -> %s%n", "", ij);
{
out.printf("%16s -> %s%n", "", ij);
}
}
}
}