mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Make SpringLiquibaseCustomizer package-private
Prior to this commit, SpringLiquibaseCustomizer had a private modifier, which breaks Spring AOT. See gh-46752 Signed-off-by: Dmytro Nosan <dimanosan@gmail.com>
This commit is contained in:
committed by
Stéphane Nicoll
parent
f2d0712edc
commit
50202cf1ff
+2
-1
@@ -183,6 +183,7 @@ public class LiquibaseAutoConfiguration {
|
||||
}
|
||||
|
||||
@ConditionalOnClass(Customizer.class)
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
static class CustomizerConfiguration {
|
||||
|
||||
@Bean
|
||||
@@ -260,7 +261,7 @@ public class LiquibaseAutoConfiguration {
|
||||
}
|
||||
|
||||
@FunctionalInterface
|
||||
private interface SpringLiquibaseCustomizer {
|
||||
interface SpringLiquibaseCustomizer {
|
||||
|
||||
/**
|
||||
* Customize the given {@link SpringLiquibase} instance.
|
||||
|
||||
Reference in New Issue
Block a user