Skip to content

Commit edbb88f

Browse files
author
Andy Goryachev
committedApr 1, 2024
8328820: Remove unused imports in javafx.swing
Reviewed-by: aghaisas
1 parent 3761d37 commit edbb88f

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed
 

‎modules/javafx.swing/src/main/java/javafx/embed/swing/InputMethodSupport.java

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,15 +25,6 @@
2525

2626
package javafx.embed.swing;
2727

28-
import com.sun.javafx.application.PlatformImpl;
29-
import com.sun.javafx.collections.ObservableListWrapper;
30-
import com.sun.javafx.scene.input.ExtendedInputMethodRequests;
31-
import javafx.application.Platform;
32-
import javafx.collections.ObservableList;
33-
import javafx.geometry.Point2D;
34-
import javafx.scene.input.InputMethodHighlight;
35-
import javafx.scene.input.InputMethodTextRun;
36-
3728
import java.awt.Rectangle;
3829
import java.awt.event.InputMethodEvent;
3930
import java.awt.font.TextHitInfo;
@@ -45,6 +36,13 @@
4536
import java.util.List;
4637
import java.util.concurrent.atomic.AtomicInteger;
4738
import java.util.concurrent.atomic.AtomicReference;
39+
import javafx.collections.ObservableList;
40+
import javafx.geometry.Point2D;
41+
import javafx.scene.input.InputMethodHighlight;
42+
import javafx.scene.input.InputMethodTextRun;
43+
import com.sun.javafx.application.PlatformImpl;
44+
import com.sun.javafx.collections.ObservableListWrapper;
45+
import com.sun.javafx.scene.input.ExtendedInputMethodRequests;
4846

4947
/**
5048
* A utility class containing the functions to support Input Methods

0 commit comments

Comments
 (0)
Please sign in to comment.