Исправление бага в LocalPreservable

This commit is contained in:
Struchkov Mark 2022-03-25 10:52:12 +03:00
parent 3721aaac8c
commit 65b88181ee
2 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,7 @@ public class LocalPreservable<S> implements Preservable<S> {
@Override
public Map<String, S> getAllSaveElement(Long personId) {
return null;
return saveMap.get(personId);
}

View File

@ -33,5 +33,4 @@ public interface Preservable<S> {
Map<String, S> getAllSaveElement(Long personId);
}