On Thu, 29 Jul 2021 07:17:45 GMT, Ajit Ghaisas <aghai...@openjdk.org> wrote:
> I found few more such methods in javafx.css package using "find in files" in > my editor and fixed them. > ... > * PseudoClassImpl.getPseudoClassName() > * PseudoClassImpl.toString() > * SimpleSelector.getPseudoclasses() These three are not part of the public API. `PseudoClassImpl` is a package-scope class and `SimpleSelector.getPseudoclasses()` is a package-scope method, so they don't need any javadoc comments (although since you've already added them, there is no need to remove them). ------------- PR: https://git.openjdk.java.net/jfx/pull/589