Merge branch '2.0.x'

This commit is contained in:
Phillip Webb
2018-05-04 20:14:33 -07:00

View File

@@ -115,12 +115,12 @@ public final class EndpointRequest {
/**
* Base class for supported request matchers.
*/
private static abstract class AbstractRequestMatcher
private abstract static class AbstractRequestMatcher
extends ApplicationContextRequestMatcher<WebApplicationContext> {
private volatile RequestMatcher delegate;
public AbstractRequestMatcher() {
AbstractRequestMatcher() {
super(WebApplicationContext.class);
}