Hey, we would like to do some changes in our React...
# announcements
s
Hey, we would like to do some changes in our Reactor Kotlin support (https://github.com/reactor/reactor-core/pull/1475/ for the context), but I am not sure if this is possible since we don't want to break API for existing users, so I prefer to ask. First question: does renaming a
.kt
file that contains only extensions (regular functions not inlined) breaks public API in Kotlin? Second question: does changing
fun whenComplete(vararg sources: Publisher<Void>) = ...
to
fun whenComplete(vararg sources: Publisher<*>)
breaks public binary API?