aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui-desktop/src/main/java/market
diff options
context:
space:
mode:
Diffstat (limited to 'modules/ui-desktop/src/main/java/market')
-rw-r--r--modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java b/modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java
deleted file mode 100644
index 698cdd7..0000000
--- a/modules/ui-desktop/src/main/java/market/guess/ui/desktop/App.java
+++ /dev/null
@@ -1,26 +0,0 @@
1package market.guess.ui.desktop;
2
3import javafx.application.Application;
4import javafx.scene.Scene;
5import javafx.scene.control.Label;
6import javafx.scene.layout.StackPane;
7import javafx.stage.Stage;
8
9public class App extends Application {
10 public static void main(String[] args) {
11 launch();
12 }
13
14 @Override
15 public void start(Stage stage) throws Exception {
16 var javaVersion = System.getProperty("java.version");
17 var openjfxVersion = System.getProperty("javafx.version");
18
19 var label =
20 new Label("Hello. JavaFX " + openjfxVersion + ", running on Java " + javaVersion + ".");
21 var scene = new Scene(new StackPane(label), 640, 480);
22
23 stage.setScene(scene);
24 stage.show();
25 }
26}