From ea3ccb93a967f6ea02b0bddd86a4908613ffec98 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 11 May 2026 13:05:49 +0200 Subject: [PATCH] Fix: Removed unused overriden methods --- .../idi/idatt2003/g40/mappe/view/ingame/InGameView.java | 5 ----- .../idatt2003/g40/mappe/view/mainmenu/MainMenuView.java | 8 -------- 2 files changed, 13 deletions(-) diff --git a/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/ingame/InGameView.java b/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/ingame/InGameView.java index 9c132de..9ce3bfc 100644 --- a/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/ingame/InGameView.java +++ b/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/ingame/InGameView.java @@ -19,9 +19,4 @@ protected void initLayout() { protected void initStyling() { } - - @Override - public void onUpdate() { - - } } diff --git a/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/mainmenu/MainMenuView.java b/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/mainmenu/MainMenuView.java index 7b09c70..b3863dd 100644 --- a/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/mainmenu/MainMenuView.java +++ b/src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/mainmenu/MainMenuView.java @@ -110,12 +110,4 @@ protected void initStyling() { settingsButton.getStyleClass().add("menu-button"); exitButton.getStyleClass().add("menu-button"); } - - /** - * {@inheritDoc} - * */ - @Override - public void onUpdate() { - - } }