Skip to content

Commit ba164f2

Browse files
pengdevtobrun
authored andcommitted
Change retention policy of DataCompat annotation to SOURCE.
1 parent eb6ef56 commit ba164f2

File tree

1 file changed

+1
-1
lines changed
  • annotation/src/main/kotlin/com/tobrun/datacompat/annotation

1 file changed

+1
-1
lines changed

annotation/src/main/kotlin/com/tobrun/datacompat/annotation/DataCompat.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ package com.tobrun.datacompat.annotation
77
* @param importsForDefaults if any default values require additional imports, they should be passed here.
88
* E.g. `["android.graphics.Color"]`
99
*/
10-
@Retention(AnnotationRetention.RUNTIME)
10+
@Retention(AnnotationRetention.SOURCE)
1111
@Target(AnnotationTarget.CLASS)
1212
annotation class DataCompat(val importsForDefaults: Array<String> = [])

0 commit comments

Comments
 (0)