Remove redundant return

Signed-off-by: Dominic Fischer <dominicfischer7@gmail.com>
This commit is contained in:
Dominic Fischer 2020-11-16 14:45:42 +00:00
parent 0a318f618b
commit 3d970737d1
1 changed files with 1 additions and 1 deletions

View File

@ -38,6 +38,6 @@ internal class DefaultRawService @Inject constructor(
}
override suspend fun clearCache() {
return cleanRawCacheTask.execute(Unit)
cleanRawCacheTask.execute(Unit)
}
}