I have the following interface.
interface Some {
default <T extends Appendable> T append(final T appendable) {
}
default <T extends File> T append(final T file) { // Omitted form the Method Summary section
}
}
Now, when I generate javadoc, the <T extends Appendable> T append(final T appendable) method is listed on the Method Summary section but the <T extends File> T append(final T file) method is not.
The Method Details section contains both methods.
Is this normal? How can I fix it?