Change type of Manga.genre to a List<String> (#188)

This commit is contained in:
Mitchell Syer
2021-09-04 17:06:52 -04:00
committed by GitHub
parent eb416c45bd
commit a298c61dab
6 changed files with 17 additions and 7 deletions

View File

@@ -0,0 +1,3 @@
package suwayomi.tachidesk.manga.impl.util.lang
fun List<String>.trimAll() = map { it.trim() }