We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81b41ec commit 631ea2cCopy full SHA for 631ea2c
richtextfx/src/main/java/org/fxmisc/richtext/JavaFXCompatibility.java
@@ -8,7 +8,7 @@
8
import javafx.scene.paint.Paint;
9
import javafx.scene.text.Text;
10
11
-public class JavaFXCompatibility {
+class JavaFXCompatibility {
12
13
private static boolean isJava9orLater;
14
@@ -28,7 +28,7 @@ public class JavaFXCompatibility {
28
* Java 9+: javafx.scene.text.Text.selectionFillProperty()
29
*/
30
@SuppressWarnings("unchecked")
31
- public static ObjectProperty<Paint> Text_selectionFillProperty(Text text) {
+ static ObjectProperty<Paint> Text_selectionFillProperty(Text text) {
32
try {
33
if (mText_selectionFillProperty == null) {
34
mText_selectionFillProperty = Text.class.getMethod(
0 commit comments