Skip to content

Commit 4ee8969

Browse files
committed
update
1 parent 0c8e817 commit 4ee8969

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/lint/src/main/kotlin/NonAndroidxNullabilityDetector.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ private val NULLABLE_ANNOTATIONS = listOf("Nullable", "CheckForNull")
3636
private val NOT_NULL_ANNOTATIONS = listOf("NonNull", "NotNull", "Nonnull")
3737

3838
private val ANDROIDX_ANNOTATIONS = listOf(
39-
"android.support.annotation.NonNull",
39+
"androidx.annotation.Nullable",
4040
"androidx.annotation.NonNull",
4141
"android.support.annotation.Nullable",
42-
"androidx.annotation.NonNull")
42+
"android.support.annotation.NonNull")
4343

4444
class NonAndroidxNullabilityDetector : Detector(), SourceCodeScanner {
4545
companion object Issues {

0 commit comments

Comments
 (0)