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:
commit
3b5bb78eed
|
@ -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);
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue