Hi all, have you tried to generate Javadoc for the...
# dokka
a
Hi all, have you tried to generate Javadoc for the sealed class? The gradle log said:
Copy code
For Environment: expected 1 page, but got 2
And rendered Javadoc with 2 rows for the
Environment
sealed class. Here's class:
Copy code
public sealed class Environment(internal val url: String) {
    public object QA : Environment("<https://QA>")
    public object PROD : Environment("<https://PROD>")
}
As I understand, there's
FallbackPageMergerStrategy
that spits out the line above, but I believe it is just a side-effect of having 2 of the same
PageNode
. Is this a real bug, or "undocumented behaviour"? Thanks
k
I think this is more of a notification that we have two page nodes with the same name and thus the same path, however this message doesn’t make too much sense in this context, so just ignore it 😉
a
The rendered page has 2 "Environment" items and duplicated objects: