Merge pull request #5625 from eclipse/dependabot/maven/jetty-9.4.x/com.puppycrawl.tools-checkstyle-8.37

Bump checkstyle from 8.36.2 to 8.37
This commit is contained in:
Joakim Erdfelt 2020-11-10 12:06:10 -06:00 committed by GitHub
commit 3b5bb78eed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 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

@ -17,7 +17,7 @@
<jetty.url>https://eclipse.org/jetty</jetty.url>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build-support.version>1.5</build-support.version>
<checkstyle.version>8.36.2</checkstyle.version>
<checkstyle.version>8.37</checkstyle.version>
<slf4j.version>1.7.30</slf4j.version>
<log4j2.version>2.11.2</log4j2.version>
<disruptor.version>3.4.2</disruptor.version>

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);
}
}
}
}