fix work of ModifyPsychomatrixPresenterImpl#getPsychomatrixHistory

This commit is contained in:
InsanusMokrassar 2018-09-08 19:28:36 +08:00
parent 091f6a7776
commit 39429be769

View File

@ -33,6 +33,6 @@ class ModifyPsychomatrixPresenterImpl(
} }
override fun getPsychomatrixHistory(psychomatrix: Psychomatrix): List<Operation> { override fun getPsychomatrixHistory(psychomatrix: Psychomatrix): List<Operation> {
return getInverts(psychomatrix) return modifyPsychomatrixUseCase.getPsychomatrixHistory(psychomatrix)
} }
} }