Hi all, have you tried to generate Javadoc for the sealed class?
The gradle log said:
For Environment: expected 1 page, but got 2
And rendered Javadoc with 2 rows for the
Environment
sealed class.
Here's class:
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