Skip to content

Commit

Permalink
Protected in object deprecated: overriders search fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mglukhikh committed Oct 7, 2015
1 parent c77d0b9 commit 407d46b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public object KotlinPsiMethodOverridersSearch : HierarchySearch<PsiMethod>(PsiMe
return classToMethod.values()
}

protected override fun isApplicable(request: HierarchySearchRequest<PsiMethod>): Boolean =
override fun isApplicable(request: HierarchySearchRequest<PsiMethod>): Boolean =
runReadAction { request.originalElement.isOverridableElement() }

override fun doSearchDirect(request: HierarchySearchRequest<PsiMethod>, consumer: Processor<PsiMethod>) {
Expand Down

0 comments on commit 407d46b

Please sign in to comment.