parent
e438338d98
commit
35997a30a3
|
@ -164,11 +164,11 @@ public final class EndpointRequest {
|
||||||
}
|
}
|
||||||
|
|
||||||
private EndpointServerWebExchangeMatcher(Class<?>[] endpoints, boolean includeLinks) {
|
private EndpointServerWebExchangeMatcher(Class<?>[] endpoints, boolean includeLinks) {
|
||||||
this(Arrays.asList((Object[]) endpoints), Collections.emptyList(), includeLinks);
|
this(Arrays.asList(endpoints), Collections.emptyList(), includeLinks);
|
||||||
}
|
}
|
||||||
|
|
||||||
private EndpointServerWebExchangeMatcher(String[] endpoints, boolean includeLinks) {
|
private EndpointServerWebExchangeMatcher(String[] endpoints, boolean includeLinks) {
|
||||||
this(Arrays.asList((Object[]) endpoints), Collections.emptyList(), includeLinks);
|
this(Arrays.asList(endpoints), Collections.emptyList(), includeLinks);
|
||||||
}
|
}
|
||||||
|
|
||||||
private EndpointServerWebExchangeMatcher(List<Object> includes, List<Object> excludes, boolean includeLinks) {
|
private EndpointServerWebExchangeMatcher(List<Object> includes, List<Object> excludes, boolean includeLinks) {
|
||||||
|
|
Loading…
Reference in New Issue