From 27aad14b639a3e3464d85c02e34b995f57f09160 Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Sun, 23 Jun 2024 22:26:17 +0200 Subject: [PATCH] cleanup unused method --- .../de/deadlocker8/budgetmaster/accounts/Account.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/BudgetMasterServer/src/main/java/de/deadlocker8/budgetmaster/accounts/Account.java b/BudgetMasterServer/src/main/java/de/deadlocker8/budgetmaster/accounts/Account.java index 5121aeae1..2e40135cc 100644 --- a/BudgetMasterServer/src/main/java/de/deadlocker8/budgetmaster/accounts/Account.java +++ b/BudgetMasterServer/src/main/java/de/deadlocker8/budgetmaster/accounts/Account.java @@ -68,17 +68,6 @@ public class Account implements ProvidesID, Iconizable { } - public void updateFromOtherAccount(Account otherAccount) - { - this.setID(otherAccount.ID); - this.setName(otherAccount.name); - this.setType(otherAccount.type); - this.setSelected(otherAccount.isSelected); - this.setDefault(otherAccount.isDefault); - this.setAccountState(otherAccount.accountState); - this.setIconReference(otherAccount.iconReference); - } - public Integer getID() { return ID; -- GitLab