Compare commits

...

3 Commits

Author SHA1 Message Date
eeca53fc25 rm test 2022-11-23 14:03:10 +01:00
9178db8a8d Merge remote-tracking branch 'origin/main' into main 2022-11-16 08:40:35 +01:00
e23937c4f6 Hello word 2022-11-16 08:39:41 +01:00
2 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,3 @@
# Essensbestellungsverwaltung # Essensbestellungsverwaltung
test test
test

View File

@ -12,7 +12,7 @@ public class HelloApplication extends Application {
public void start(Stage stage) throws IOException { public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml")); FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 320, 240); Scene scene = new Scene(fxmlLoader.load(), 320, 240);
stage.setTitle("Hello!"); stage.setTitle("Hello World!");
stage.setScene(scene); stage.setScene(scene);
stage.show(); stage.show();
} }