Refactor away some unnecessary lambda expressions

This commit is contained in:
arkon
2023-03-26 13:27:31 -04:00
parent 1a61130f0b
commit be54b8862e
16 changed files with 37 additions and 47 deletions

View File

@@ -141,7 +141,7 @@ class BackupManager(
.map(Manga::source)
.distinct()
.map(sourceManager::getOrStub)
.map { BackupSource.copyFrom(it) }
.map(BackupSource::copyFrom)
.toList()
}