@@ -313,12 +313,6 @@ public class GenericStyledArea<PS, SEG, S> extends Region
313313 * *
314314 * ********************************************************************** */
315315
316- /**
317- * Background fill for highlighted text.
318- */
319- private final StyleableObjectProperty <Paint > highlightFill
320- = new CustomStyleableProperty <>(Color .DODGERBLUE , "highlightFill" , this , HIGHLIGHT_FILL );
321-
322316 /**
323317 * Text color for highlighted text.
324318 */
@@ -1571,10 +1565,6 @@ private void suspendVisibleParsWhile(Runnable runnable) {
15711565 * *
15721566 * ********************************************************************** */
15731567
1574- private static final CssMetaData <GenericStyledArea <?, ?, ?>, Paint > HIGHLIGHT_FILL = new CustomCssMetaData <>(
1575- "-fx-highlight-fill" , StyleConverter .getPaintConverter (), Color .DODGERBLUE , s -> s .highlightFill
1576- );
1577-
15781568 private static final CssMetaData <GenericStyledArea <?, ?, ?>, Paint > HIGHLIGHT_TEXT_FILL = new CustomCssMetaData <>(
15791569 "-fx-highlight-text-fill" , StyleConverter .getPaintConverter (), Color .WHITE , s -> s .highlightTextFill
15801570 );
@@ -1584,7 +1574,6 @@ private void suspendVisibleParsWhile(Runnable runnable) {
15841574 static {
15851575 List <CssMetaData <? extends Styleable , ?>> styleables = new ArrayList <>(Region .getClassCssMetaData ());
15861576
1587- styleables .add (HIGHLIGHT_FILL );
15881577 styleables .add (HIGHLIGHT_TEXT_FILL );
15891578
15901579 CSS_META_DATA_LIST = Collections .unmodifiableList (styleables );
0 commit comments