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 5121aeae136898d0a113ec7671588c03f521baee..2e40135cc83e75c156c0b076040121e89af30301 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;