Fix checkstyle violations

This commit is contained in:
Phillip Webb
2018-05-04 20:13:57 -07:00
parent 975e986fef
commit 6556bb2e89

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