Fix formatting of R2dbcDataAutoConfiguration

See c2b8d3d.
This commit is contained in:
Andy Wilkinson
2022-10-03 14:29:46 +01:00
parent 3ab36074dc
commit 803d353d49

View File

@@ -72,7 +72,8 @@ public class R2dbcDataAutoConfiguration {
@Bean
@ConditionalOnMissingBean
static RelationalManagedTypes r2dbcManagedTypes(ApplicationContext applicationContext) throws ClassNotFoundException {
static RelationalManagedTypes r2dbcManagedTypes(ApplicationContext applicationContext)
throws ClassNotFoundException {
return RelationalManagedTypes.fromIterable(new EntityScanner(applicationContext).scan(Table.class));
}