Skip to content

Commit

Permalink
refactor: removed unnessecary class variables
Browse files Browse the repository at this point in the history
  • Loading branch information
emilfa committed Mar 26, 2026
1 parent e0ef534 commit c8341af
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ public class NavigationController {
private final LoginHeader loginHeader;

private final AppState appState;
private final UserService userService;
private final DonationService donationService;
private final OrganizationService organizationService;

private final UserController userController;
private final DonationController donationController;
Expand All @@ -36,9 +33,6 @@ public NavigationController(BorderPane root, AppState appState, UserService user
this.loginHeader = new LoginHeader();

this.appState = appState;
this.userService = userService;
this.donationService = donationService;
this.organizationService = organizationService;

this.userController = new UserController(appState, this, userService);
this.donationController = new DonationController(appState, this, donationService);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ private StackPane getLogoSection() {
StackPane logoSection = new StackPane();
logoSection.setId("logo-section");
logoSection.setAlignment(Pos.CENTER);
logoSection.setStyle("-fx-cursor: hand;");

ImageView logo = new ImageView(
new Image(getClass().getResource("/header/images/hmh-logo.png").toExternalForm())
Expand Down

0 comments on commit c8341af

Please sign in to comment.