Skip to content

Commit

Permalink
fix: a bug in App
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheaGjerde committed Mar 11, 2026
1 parent 73191e3 commit de7e295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/edu/group5/app/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.util.HashMap;

import edu.group5.app.control.MainController;
import edu.group5.app.control.OrgAPIWrapper;
import edu.group5.app.control.OrgApiWrapper;
import edu.group5.app.view.MainView;
import javafx.application.Application;
import javafx.scene.Scene;
Expand Down Expand Up @@ -32,7 +32,7 @@ public void start(Stage stage) {
}

static void main(String[] args) throws InterruptedException {
OrgAPIWrapper orgWrap = new OrgAPIWrapper("https://app.innsamlingskontrollen.no/api/public/v1/all");
OrgApiWrapper orgWrap = new OrgApiWrapper("https://app.innsamlingskontrollen.no/api/public/v1/all");
System.out.println();
System.out.println();
orgWrap.importData();
Expand Down

0 comments on commit de7e295

Please sign in to comment.