Unnecessary interface modifier

This commit is contained in:
Lars Grefer
2019-08-09 00:42:35 +02:00
parent 40bee457f9
commit d9c1f03b84
23 changed files with 63 additions and 75 deletions

View File

@@ -16,9 +16,9 @@
package bigbank;
public interface BankDao {
public Account readAccount(Long id);
Account readAccount(Long id);
public void createOrUpdateAccount(Account account);
void createOrUpdateAccount(Account account);
public Account[] findAccounts();
Account[] findAccounts();
}