mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
docs(archive): Fix comments [skip ci]
This commit is contained in:
parent
c5537fa85b
commit
b891cd26e2
1 changed files with 3 additions and 3 deletions
|
@ -7,12 +7,12 @@ import eu.kanade.tachiyomi.util.system.ImageUtil
|
|||
import yokai.core.archive.ArchiveReader
|
||||
|
||||
/**
|
||||
* Loader used to load a chapter from a .zip or .cbz file.
|
||||
* Loader used to load a chapter from an archive file.
|
||||
*/
|
||||
internal class ArchivePageLoader(private val reader: ArchiveReader) : PageLoader() {
|
||||
|
||||
/**
|
||||
* Recycles this loader and the open zip.
|
||||
* Recycles this loader and the open archive.
|
||||
*/
|
||||
override fun recycle() {
|
||||
super.recycle()
|
||||
|
@ -20,7 +20,7 @@ internal class ArchivePageLoader(private val reader: ArchiveReader) : PageLoader
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns the pages found on this zip archive ordered with a natural comparator.
|
||||
* Returns the pages found on this archive ordered with a natural comparator.
|
||||
*/
|
||||
override suspend fun getPages(): List<ReaderPage> = reader.useEntries { entries ->
|
||||
entries
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue