[Analysis API] rename KtAnnotationsList.containsAnnotation -> hasAnnotation

This commit is contained in:
Ilya Kirillov
2022-09-13 18:18:03 +02:00
parent 1bdde25dc7
commit 7d47651353
6 changed files with 12 additions and 12 deletions
@@ -37,7 +37,7 @@ internal class KtFe10AnnotationsList private constructor(
}
}
override fun containsAnnotation(classId: ClassId): Boolean = withValidityAssertion {
override fun hasAnnotation(classId: ClassId): Boolean = withValidityAssertion {
return fe10Annotations.hasAnnotation(classId.asSingleFqName())
}