Skip to content
Snippets Groups Projects
Commit d29c212f authored by Robert Goldmann's avatar Robert Goldmann
Browse files

refactoring: removed unused method

parent 26e76e65
No related branches found
No related tags found
No related merge requests found
...@@ -9,8 +9,6 @@ public interface AccountRepository extends JpaRepository<Account, Integer> ...@@ -9,8 +9,6 @@ public interface AccountRepository extends JpaRepository<Account, Integer>
{ {
List<Account> findAllByTypeOrderByNameAsc(AccountType accountType); List<Account> findAllByTypeOrderByNameAsc(AccountType accountType);
List<Account> findAllByTypeAndIsReadOnlyOrderByNameAsc(AccountType accountType, Boolean isReadOnly);
Account findByName(String name); Account findByName(String name);
List<Account> findAllByType(AccountType accountType); List<Account> findAllByType(AccountType accountType);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment