Formatting

This commit is contained in:
arkon 2021-10-04 10:50:09 -04:00
parent 372e500590
commit 1a52385b78

View File

@ -37,8 +37,7 @@ interface Manga : SManga {
fun getGenres(): List<String>? {
if (genre.isNullOrBlank()) return null
return genre?.split(", ")?.map { it.trim() } ?.filterNot { it.isBlank() } ?.distinct()
return genre?.split(", ")?.map { it.trim() }?.filterNot { it.isBlank() }?.distinct()
}
private fun setChapterFlags(flag: Int, mask: Int) {