Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Oct 10, 2023
1 parent e3993ba commit b831c74
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -480,12 +480,11 @@ public <T> boolean exists(Object id, Class<T> entityClass) {
}
}

@SuppressWarnings("unchecked")
@Override
public <T> Stream<T> findAll(Class<T> entityClass) {
Assert.notNull(entityClass, "Class must not be null!");

return (Stream<T>) findAllUsingQuery(entityClass, null, null);
return findAllUsingQuery(entityClass, null, (Qualifier[]) null);
}

@SuppressWarnings("unchecked")
Expand Down

0 comments on commit b831c74

Please sign in to comment.