1 package kotlinx.serialization.hocon.internal
2 
3 /**
4  * Suppresses Animal Sniffer plugin errors for certain methods.
5  * Such methods include references to Java 8 methods that are not
6  * available in Android API, but can be desugared by R8.
7  */
8 @Retention(AnnotationRetention.BINARY)
9 @Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)
10 internal annotation class SuppressAnimalSniffer
11