Merge branch '2.7.x'
This commit is contained in:
commit
7da035b12d
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
* Copyright 2012-2022 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -26,7 +26,7 @@ import org.springframework.boot.test.autoconfigure.filter.StandardAnnotationCust
|
|||
*/
|
||||
class DataCassandraTypeExcludeFilter extends StandardAnnotationCustomizableTypeExcludeFilter<DataCassandraTest> {
|
||||
|
||||
protected DataCassandraTypeExcludeFilter(Class<?> testClass) {
|
||||
DataCassandraTypeExcludeFilter(Class<?> testClass) {
|
||||
super(testClass);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ import org.springframework.boot.test.autoconfigure.filter.StandardAnnotationCust
|
|||
*/
|
||||
class DataCouchbaseTypeExcludeFilter extends StandardAnnotationCustomizableTypeExcludeFilter<DataCouchbaseTest> {
|
||||
|
||||
protected DataCouchbaseTypeExcludeFilter(Class<?> testClass) {
|
||||
DataCouchbaseTypeExcludeFilter(Class<?> testClass) {
|
||||
super(testClass);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ import org.springframework.boot.test.autoconfigure.filter.StandardAnnotationCust
|
|||
class DataElasticsearchTypeExcludeFilter
|
||||
extends StandardAnnotationCustomizableTypeExcludeFilter<DataElasticsearchTest> {
|
||||
|
||||
protected DataElasticsearchTypeExcludeFilter(Class<?> testClass) {
|
||||
DataElasticsearchTypeExcludeFilter(Class<?> testClass) {
|
||||
super(testClass);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
* Copyright 2012-2022 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -34,7 +34,7 @@ public final class WebServiceClientExcludeFilter
|
|||
|
||||
private final Class<?>[] components;
|
||||
|
||||
protected WebServiceClientExcludeFilter(Class<?> testClass) {
|
||||
WebServiceClientExcludeFilter(Class<?> testClass) {
|
||||
super(testClass);
|
||||
this.components = getAnnotation().getValue("components", Class[].class).orElseGet(() -> new Class<?>[0]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue