File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/jruby/rack Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ public class UnmappedRackFilter extends AbstractFilter {
4949 private static final Collection <Integer > RESPONSE_NOT_HANDLED_STATUSES ;
5050 static {
5151 final Set <Integer > statuses = new HashSet <>(8 , 1 );
52- statuses .add ( 404 );
52+ statuses .add (404 );
5353 // 403 due containers not supporting PUT/DELETE correctly (Tomcat 6)
54- statuses .add ( 403 );
54+ statuses .add (403 );
5555 // 405 returned by Jetty 7/8 on PUT/DELETE requests by default
56- statuses .add ( 405 );
56+ statuses .add (405 );
5757 // 501 is returned for non standard http verbs like PATCH
58- statuses .add ( 501 );
58+ statuses .add (501 );
5959 RESPONSE_NOT_HANDLED_STATUSES = Collections .unmodifiableSet (statuses );
6060 }
6161
You can’t perform that action at this time.
0 commit comments