Fix exception in KotlinExpandNodeProjectViewProvider.modify
This commit is contained in:
@@ -46,7 +46,7 @@ class KotlinExpandNodeProjectViewProvider : TreeStructureProvider, DumbAware {
|
||||
val result = ArrayList<AbstractTreeNode<out Any>>()
|
||||
|
||||
for (child in children) {
|
||||
val childValue = child.value.asKtFile()
|
||||
val childValue = child.value?.asKtFile()
|
||||
|
||||
if (childValue != null) {
|
||||
val declarations = childValue.declarations
|
||||
|
||||
Reference in New Issue
Block a user