mbien commented on issue #6718: URL: https://github.com/apache/netbeans/issues/6718#issuecomment-1817490088
I am not sure about this. Probably 90% of all methods I override shouldn't even have javadoc since there are non public or internal, inner classes for example, where the impl it not exposed while the super class or interface is - it would only cause noise. Adding `inheritDoc` by default over every `@Override` will likely also cause problems when project dependencies are overwritten since the javadoc tool requires access to the full dependency source tree to be able to inherit javadoc. There is a reason the javadoc tool does not inherit doc by default and requires the inheritDoc tag, I think IDEs should also not add this tag blindly. It is a manual step for specific situations. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
