RFR: JDK-8269774: doclint reports missing javadoc comments for JavaFX properties if the docs are on the property method

2021-07-10 Thread Jonathan Gibbons
Please review a simple change to the code for generating docs for JavaFX properties, in order to suppress an inappropriate "missing comment" warning. The change is to use `hasDocCommentTree` instead of `getDocCommentTree`. A new test is added, that runs javadoc on similar classes, with and witho

Re: RFR: JDK-8269774: doclint reports missing javadoc comments for JavaFX properties if the docs are on the property method

2021-07-10 Thread Kevin Rushforth
On Fri, 9 Jul 2021 19:17:04 GMT, Jonathan Gibbons wrote: > Please review a simple change to the code for generating docs for JavaFX > properties, in order to suppress an inappropriate > "missing comment" warning. > > The change is to use `hasDocCommentTree` instead of `getDocCommentTree`. > >