Cleanup: apply RemoveRedundantQualifierNameInspection to idea

This commit is contained in:
Dmitry Gridin
2019-06-20 19:31:23 +07:00
parent f1e2ba728f
commit 8c84f885ac
57 changed files with 227 additions and 244 deletions
+2 -2
View File
@@ -188,7 +188,7 @@ class FirExplorerToolWindow(private val project: Project, private val toolWindow
override fun getChildren(): Array<SimpleNode> {
if (data == null) {
return SimpleNode.NO_CHILDREN
return NO_CHILDREN
} else {
val classOfData = data::class
@@ -246,7 +246,7 @@ class FirExplorerToolWindow(private val project: Project, private val toolWindow
}
override fun getChildren(): Array<SimpleNode> {
if (data == null) return SimpleNode.NO_CHILDREN
if (data == null) return NO_CHILDREN
return data.mapIndexed { index, any ->