We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
javafx.css.SimpleSelector and javafx.css.CompoundSelector are deprecated in 23, see https://bugs.openjdk.org/browse/JDK-8324182, and removed in 24-ea, see https://bugs.openjdk.org/browse/JDK-8323706.
javafx.css.SimpleSelector
javafx.css.CompoundSelector
These are used in Kit CSSInternal::getStyleClasses, and the fix should be simple, just using this code:
CSSInternal::getStyleClasses
for (Rule r : s.getRules()) { for (Selector ss : r.getSelectors()) { styleClasses.addAll(ss.getStyleClassNames()); } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
javafx.css.SimpleSelector
andjavafx.css.CompoundSelector
are deprecated in 23, see https://bugs.openjdk.org/browse/JDK-8324182, and removed in 24-ea, see https://bugs.openjdk.org/browse/JDK-8323706.These are used in Kit
CSSInternal::getStyleClasses
, and the fix should be simple, just using this code:The text was updated successfully, but these errors were encountered: