File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
spring-context/src/main/kotlin/org/springframework/context/support
spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/server Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ fun beans(init: BeanDefinitionDsl.() -> Unit): BeanDefinitionDsl {
76
76
* @author Sebastien Deleuze
77
77
* @since 5.0
78
78
*/
79
- class BeanDefinitionDsl (private val condition : (ConfigurableEnvironment ) -> Boolean = { true }) : ApplicationContextInitializer<GenericApplicationContext> {
79
+ open class BeanDefinitionDsl (private val condition : (ConfigurableEnvironment ) -> Boolean = { true }) : ApplicationContextInitializer<GenericApplicationContext> {
80
80
81
81
@PublishedApi
82
82
internal val registrations = arrayListOf< (GenericApplicationContext ) -> Unit > ()
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ fun router(routes: RouterFunctionDsl.() -> Unit) = RouterFunctionDsl().apply(rou
60
60
* @since 5.0
61
61
* @see <a href="https://youtrack.jetbrains.com/issue/KT-15667">Kotlin issue about supporting ::foo for member functions</a>
62
62
*/
63
- class RouterFunctionDsl {
63
+ open class RouterFunctionDsl {
64
64
65
65
private val routes = mutableListOf<RouterFunction <ServerResponse >>()
66
66
You can’t perform that action at this time.
0 commit comments