Fix compilation error in :noarg-ide-plugin
Was overlooked in a06bffc4b9.
This commit is contained in:
@@ -15,10 +15,10 @@ import org.jetbrains.kotlin.psi.KtModifierListOwner
|
||||
internal val NO_ARG_ANNOTATION_OPTION_PREFIX =
|
||||
"plugin:${NoArgCommandLineProcessor.PLUGIN_ID}:${NoArgCommandLineProcessor.ANNOTATION_OPTION.optionName}="
|
||||
|
||||
class IdeNoArgDeclarationChecker(project: Project) : AbstractNoArgDeclarationChecker() {
|
||||
class IdeNoArgDeclarationChecker(project: Project) : AbstractNoArgDeclarationChecker(false) {
|
||||
|
||||
private val cachedAnnotationNames = CachedAnnotationNames(project, NO_ARG_ANNOTATION_OPTION_PREFIX)
|
||||
|
||||
override fun getAnnotationFqNames(modifierListOwner: KtModifierListOwner?): List<String> =
|
||||
cachedAnnotationNames.getAnnotationNames(modifierListOwner)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user