refactor package structure of Adapter.persistence
continuous-integration/drone/push Build is passing Details

This commit is contained in:
qvalentin 2022-04-22 12:54:04 +02:00
parent c4ef8b9181
commit bc0aad431f
Signed by: qvalentin
GPG Key ID: C979FA1EAFCABF1C
2 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
package persistence;
package persistence.category;
import abstraction.PersistenceAdapter;
import category.Category;
@ -13,12 +13,11 @@ public class CSVCategoryPersistenceAdapter implements PersistenceAdapter<Categor
}
@Override
public Boolean remove(Category value) {
return null;
public void remove(Category value) {
}
@Override
public Boolean add(Category category) {
return null;
public void add(Category category) {
}
}

View File

@ -1,4 +1,4 @@
package persistence;
package persistence.category;
public record CategoryEntity(String name, int id) {