mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-23 08:50:52 +01:00
revert to java 8
This commit is contained in:
parent
338a20688d
commit
bb1bd567b3
@ -11,7 +11,7 @@
|
||||
<version>1.0</version>
|
||||
|
||||
<properties>
|
||||
<javafx.version>11</javafx.version>
|
||||
<javafx.version>1.8</javafx.version>
|
||||
</properties>
|
||||
|
||||
<parent>
|
||||
@ -124,21 +124,21 @@
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-fxml</artifactId>
|
||||
<version>${javafx.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-graphics</artifactId>
|
||||
<version>${javafx.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-web</artifactId>
|
||||
<version>${javafx.version}</version>
|
||||
</dependency>
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>org.openjfx</groupId>-->
|
||||
<!-- <artifactId>javafx-fxml</artifactId>-->
|
||||
<!-- <version>${javafx.version}</version>-->
|
||||
<!-- </dependency>-->
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>org.openjfx</groupId>-->
|
||||
<!-- <artifactId>javafx-graphics</artifactId>-->
|
||||
<!-- <version>${javafx.version}</version>-->
|
||||
<!-- </dependency>-->
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>org.openjfx</groupId>-->
|
||||
<!-- <artifactId>javafx-web</artifactId>-->
|
||||
<!-- <version>${javafx.version}</version>-->
|
||||
<!-- </dependency>-->
|
||||
<dependency>
|
||||
<groupId>org.json</groupId>
|
||||
<artifactId>json</artifactId>
|
||||
|
@ -20,7 +20,7 @@ public class ExtensionHandler {
|
||||
private final List<GEarthExtension> gEarthExtensions = new ArrayList<>();
|
||||
private final HConnection hConnection;
|
||||
private List<ExtensionProducer> extensionProducers;
|
||||
private Observable<ExtensionConnectedListener> observable = new Observable<>() {
|
||||
private Observable<ExtensionConnectedListener> observable = new Observable<ExtensionConnectedListener>() {
|
||||
@Override
|
||||
public void addListener(ExtensionConnectedListener extensionConnectedListener) {
|
||||
super.addListener(extensionConnectedListener);
|
||||
|
@ -69,7 +69,6 @@ public class UiLoggerController implements Initializable {
|
||||
appendLater.clear();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private static String cleanTextContent(String text) {
|
||||
|
Loading…
Reference in New Issue
Block a user