Skip to content
Snippets Groups Projects
Commit 5ba02b2f authored by Eirik Steira's avatar Eirik Steira
Browse files

Remove loadData from App.start

parent 1781a6fc
No related branches found
No related tags found
2 merge requests!104Weekly merge to Master,!68Add LoadDatabase to load test data into the database
Pipeline #76809 failed
package NTNU.IDATT1002;
import NTNU.IDATT1002.controllers.DataExchange;
import NTNU.IDATT1002.database.LoadDatabase;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
......@@ -18,8 +17,6 @@ public class App extends Application {
@Override
public void start(Stage stage) throws IOException {
LoadDatabase.load();
ex = new DataExchange();
scene = new Scene(loadFXML("login"));
stage.setScene(scene);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment