not sure what the issue is, but the docs here seem...
# arrow
g
not sure what the issue is, but the docs here seem a bit off regarding the type parameter A https://apidocs.arrow-kt.io/arrow-fx-coroutines/arrow.fx.coroutines/closeable.html
s
Oh, that's strange might be a Dokka bug 🤔 It doesn't find the
java.io.Closeable
upperbound constraint.
g
shall this be reported to the dokka channel?
s
Yes, I'll discuss this issue with them 👍
Seems to not be a Dokka bug, I was skeptical it was on their side when I started reporting it 😅 This is defined in
androidAndJvm
. (For anyone reading this 👇)
Technically,
androidAndJvm
is a common platform where the JDK is unavailable. So you can try changing the analysis platform of the corresponding Dokka source set to
jvm
.
For example,
```tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
named("androidAndJvmMain") {
platform.set(org.jetbrains.dokka.Platform.jvm)
}
}
}```
👀 1