it doesn't need to override second invoke(..) for FUS, as they both are called during refactoring

This commit is contained in:
Anton Yalyshev
2019-06-18 15:28:56 +03:00
parent 1acb89d760
commit de02fcb626
2 changed files with 0 additions and 10 deletions
@@ -116,11 +116,6 @@ class KotlinPullUpHandler : AbstractPullPushMembersHandler(
}
}
override fun invoke(project: Project, elements: Array<out PsiElement>, dataContext: DataContext?) {
super.invoke(project, elements, dataContext)
KotlinFUSLogger.log(FUSEventGroups.Refactoring, this.javaClass.simpleName)
}
override fun invoke(project: Project, editor: Editor, file: PsiFile, dataContext: DataContext?) {
super.invoke(project, editor, file, dataContext)
KotlinFUSLogger.log(FUSEventGroups.Refactoring, this.javaClass.simpleName)
@@ -89,11 +89,6 @@ class KotlinPushDownHandler : AbstractPullPushMembersHandler(
}
}
override fun invoke(project: Project, elements: Array<out PsiElement>, dataContext: DataContext?) {
super.invoke(project, elements, dataContext)
KotlinFUSLogger.log(FUSEventGroups.Refactoring, this.javaClass.simpleName)
}
override fun invoke(project: Project, editor: Editor, file: PsiFile, dataContext: DataContext?) {
super.invoke(project, editor, file, dataContext)
KotlinFUSLogger.log(FUSEventGroups.Refactoring, this.javaClass.simpleName)