Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/jetty-10.0.x' into jetty-10.0.x-…
Browse files Browse the repository at this point in the history
…5605-wakeup-blocked-threads
  • Loading branch information
lorban committed Feb 16, 2021
2 parents f70a766 + 19c32d6 commit ace019a
Show file tree
Hide file tree
Showing 150 changed files with 3,111 additions and 2,557 deletions.
11 changes: 8 additions & 3 deletions build-resources/src/main/resources/jetty-checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@

<!-- Member Name Format -->
<module name="MemberName">
<property name="format" value="^[_a-z][a-zA-Z0-9]*$"/>
<property name="format" value="^[_a-z][a-zA-Z0-9]*$" />
</module>

<!-- require braces is disabled - we don't enforce that in Jetty
Expand All @@ -107,10 +107,15 @@
</module>
-->

<!-- Enforced Whitespace After specific tokens -->
<module name="WhitespaceAfter">
<property name="tokens" value="COMMA, SEMI, LITERAL_IF, LITERAL_ELSE, LITERAL_WHILE, LITERAL_DO, LITERAL_FOR, DO_WHILE" />
</module>

<!-- No Whitespace After specific tokens -->
<module name="NoWhitespaceAfter">
<property name="tokens" value="ARRAY_INIT, AT, INC, DEC, UNARY_MINUS, UNARY_PLUS, BNOT, LNOT, DOT, ARRAY_DECLARATOR, INDEX_OP, TYPECAST"/>
<property name="allowLineBreaks" value="true"/>
<property name="tokens" value="ARRAY_INIT, AT, INC, DEC, UNARY_MINUS, UNARY_PLUS, BNOT, LNOT, DOT, ARRAY_DECLARATOR, INDEX_OP, TYPECAST" />
<property name="allowLineBreaks" value="true" />
</module>

<!-- No Whitespace Before specific tokens -->
Expand Down

This file was deleted.

128 changes: 0 additions & 128 deletions demos/demo-jetty-webapp/src/main/config/webapps/test.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void testSelfRefDeep() throws Exception
context.addServlet(DefaultServlet.class, "/");

String[] selfRefs =
{"/dispatch/forward", "/dispatch/includeS", "/dispatch/includeW", "/dispatch/includeN",};
{"/dispatch/forward", "/dispatch/includeS", "/dispatch/includeW", "/dispatch/includeN"};

/*
* Number of nested dispatch requests. 220 is a good value, as it won't
Expand Down
Loading

0 comments on commit ace019a

Please sign in to comment.