Has platform type inspection is now intention-based

(cherry picked from commit 7cc6b9b)
This commit is contained in:
Mikhail Glukhikh
2016-06-20 17:38:12 +03:00
committed by Mikhail Glukhikh
parent a68e8e0db5
commit 70becfbd86
5 changed files with 54 additions and 57 deletions
@@ -32,7 +32,7 @@ import org.jetbrains.kotlin.idea.intentions.SelfTargetingRangeIntention
abstract class IntentionBasedInspection<TElement : PsiElement>(
val intentions: List<IntentionBasedInspection.IntentionData<TElement>>,
protected val problemText: String?,
protected open val problemText: String?,
protected val elementType: Class<TElement>
) : AbstractKotlinInspection() {