Remove navigation from R class fields (already handled by the main plugin)

This commit is contained in:
Yan Zhulanow
2014-10-24 14:10:25 +04:00
parent 5f912ce13d
commit b7d410ba25
@@ -39,9 +39,6 @@ public class AndroidGotoDeclarationHandler : GotoDeclarationHandler {
val name = if (resolved is JetProperty) {
resolved.getName()
}
else if (isRClassField(resolved)) {
(resolved as PsiField).getName()
}
else null
if (name != null) {
val parser = ServiceManager.getService(sourceElement.getProject(), javaClass<AndroidUIXmlProcessor>())