Skip to content

Commit

Permalink
Fix: removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianBalunan committed Apr 15, 2026
1 parent c348161 commit b759941
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
import static javafx.application.Application.launch;

import java.net.http.HttpClient;
import java.util.Objects;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.stage.Stage;
import ntnu.systemutvikling.team6.database.DatabaseConnection;
import ntnu.systemutvikling.team6.database.DatabaseSetup;
Expand All @@ -15,7 +20,6 @@
public class HmHApplication extends Application {
@Override
public void start(Stage stage) throws Exception {
/*
FXMLLoader fxmlLoader =
new FXMLLoader(HmHApplication.class.getResource("/fxml/frontPage.fxml"));
Scene scene = new Scene(fxmlLoader.load());
Expand All @@ -30,8 +34,6 @@ public void start(Stage stage) throws Exception {
stage.setFullScreen(true);

stage.show();
*/

}

@Override
Expand Down

0 comments on commit b759941

Please sign in to comment.