Lint: Update diagnostics because of the new Uast. Also, these diagnostics are from AS 2.2.

This commit is contained in:
Yan Zhulanow
2016-10-13 20:24:37 +03:00
committed by Yan Zhulanow
parent 4c4d6a4ad4
commit c2ddd943f9
152 changed files with 27552 additions and 7266 deletions
@@ -205,7 +205,7 @@ sealed class KtLightMethodImpl(
delegate: PsiMethod, origin: LightMemberOrigin?, containingClass: KtLightClass
) : KtLightMethodImpl(delegate, origin, containingClass)
private class KtLightAnnotationMethod(
class KtLightAnnotationMethod(
override val clsDelegate: PsiAnnotationMethod,
origin: LightMemberOrigin?,
containingClass: KtLightClass
@@ -185,4 +185,9 @@ public class KtLightParameter extends LightParameter implements KtLightDeclarati
}
return super.isEquivalentTo(another);
}
@Override
public boolean equals(Object obj) {
return obj instanceof PsiElement && isEquivalentTo((PsiElement) obj);
}
}