all sorts of things
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
qvalentin 2022-05-16 21:09:45 +02:00
parent d1fdad7cf9
commit 3ef31c9c3c
Signed by: qvalentin
GPG key ID: C979FA1EAFCABF1C
23 changed files with 228 additions and 27 deletions

View file

@ -7,7 +7,7 @@ public class CategoryUseCase {
private final CategoryRepository categoryRepository;
private final CategoryIdGenerator categoryIdGenerator;
CategoryUseCase(final CategoryRepository categoryRepository, final CategoryIdGenerator idGenerator) {
public CategoryUseCase(final CategoryRepository categoryRepository, final CategoryIdGenerator idGenerator) {
this.categoryRepository = categoryRepository;
this.categoryIdGenerator = idGenerator;
}