Remove unnecessary call

This commit is contained in:
mcrakhman 2023-02-24 00:04:11 +01:00 committed by Mikhail Iudin
parent a0aa02bb8a
commit 05d76811b6
No known key found for this signature in database
GPG Key ID: FAAAA8BAABDFF1C0

View File

@ -9,7 +9,6 @@ import (
type SpaceIdsProvider interface {
AllIds() []string
RemoveObjects(ids []string)
}
type SpaceDeleter interface {
@ -69,7 +68,6 @@ func (d *deletionManager) UpdateState(state *settingsstate.State) (err error) {
if err != nil {
return
}
d.provider.RemoveObjects(allIds)
}
d.onSpaceDelete()
}