Skip to content

Commit 50202cf

Browse files
nosansnicoll
authored andcommitted
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 <[email protected]>
1 parent f2d0712 commit 50202cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseAutoConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ private void applyConnectionDetails(LiquibaseConnectionDetails connectionDetails
183183
}
184184

185185
@ConditionalOnClass(Customizer.class)
186+
@Configuration(proxyBeanMethods = false)
186187
static class CustomizerConfiguration {
187188

188189
@Bean
@@ -260,7 +261,7 @@ public String getDriverClassName() {
260261
}
261262

262263
@FunctionalInterface
263-
private interface SpringLiquibaseCustomizer {
264+
interface SpringLiquibaseCustomizer {
264265

265266
/**
266267
* Customize the given {@link SpringLiquibase} instance.

0 commit comments

Comments
 (0)