mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
a2cf210a52
Since multisource extensions are no longer a thing, we now simply rely on the flag at the extension level, i.e. the per-Source/SourceFactory `@Nsfw` annotation is no longer checked. We'll have to remove all of the annotation usages from the existing sources, which will also effectively break the setting for older versions of the app.
6 lines
190 B
Kotlin
6 lines
190 B
Kotlin
package eu.kanade.tachiyomi.annotations
|
|
|
|
// TODO: remove this when no longer used in extensions
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
@Target(AnnotationTarget.CLASS)
|
|
annotation class Nsfw
|