parent
0f6342a882
commit
6d9ce8a3b5
|
|
@ -99,7 +99,7 @@ public abstract class AbstractReactiveHealthIndicator implements ReactiveHealthI
|
|||
}
|
||||
|
||||
/**
|
||||
* Actual health check logic. If an error occurs in the pipeline it will be handled
|
||||
* Actual health check logic. If an error occurs in the pipeline, it will be handled
|
||||
* automatically.
|
||||
* @param builder the {@link Health.Builder} to report health status and details
|
||||
* @return a {@link Mono} that provides the {@link Health}
|
||||
|
|
|
|||
|
|
@ -119,8 +119,7 @@ public abstract class AnnotationCustomizableTypeExcludeFilter extends TypeExclud
|
|||
return false;
|
||||
}
|
||||
AnnotationCustomizableTypeExcludeFilter other = (AnnotationCustomizableTypeExcludeFilter) obj;
|
||||
boolean result = true;
|
||||
result = result && hasAnnotation() == other.hasAnnotation();
|
||||
boolean result = hasAnnotation() == other.hasAnnotation();
|
||||
for (FilterType filterType : FilterType.values()) {
|
||||
result &= ObjectUtils.nullSafeEquals(getFilters(filterType), other.getFilters(filterType));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ public @interface AutoConfigureTestDatabase {
|
|||
|
||||
/**
|
||||
* The type of connection to be established when {@link #replace() replacing} the
|
||||
* DataSource. By default will attempt to detect the connection based on the
|
||||
* DataSource. By default, will attempt to detect the connection based on the
|
||||
* classpath.
|
||||
* @return the type of connection to use
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -159,11 +159,6 @@ public class TestDatabaseAutoConfiguration {
|
|||
return EmbeddedDatabase.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSingleton() {
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static class EmbeddedDataSourceFactory {
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ class WebDriverScope implements Scope {
|
|||
|
||||
/**
|
||||
* Register this scope with the specified context and reassign appropriate bean
|
||||
* definitions to used it.
|
||||
* definitions to use it.
|
||||
* @param context the application context
|
||||
*/
|
||||
static void registerWith(ConfigurableApplicationContext context) {
|
||||
|
|
|
|||
|
|
@ -567,7 +567,7 @@ public class SpringApplication {
|
|||
}
|
||||
|
||||
/**
|
||||
* Apply any relevant post processing the {@link ApplicationContext}. Subclasses can
|
||||
* Apply any relevant post-processing the {@link ApplicationContext}. Subclasses can
|
||||
* apply additional processing as required.
|
||||
* @param context the application context
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue