diff --git a/idea/idea-new-project-wizard/src/org/jetbrains/kotlin/tools/projectWizard/wizard/ui/secondStep/modulesEditor/TargetsModel.kt b/idea/idea-new-project-wizard/src/org/jetbrains/kotlin/tools/projectWizard/wizard/ui/secondStep/modulesEditor/TargetsModel.kt index 24e491e1adf..f3c8adf3e3c 100644 --- a/idea/idea-new-project-wizard/src/org/jetbrains/kotlin/tools/projectWizard/wizard/ui/secondStep/modulesEditor/TargetsModel.kt +++ b/idea/idea-new-project-wizard/src/org/jetbrains/kotlin/tools/projectWizard/wizard/ui/secondStep/modulesEditor/TargetsModel.kt @@ -38,11 +38,13 @@ class TargetsModel( moduleToAdd.subModules.forEach { subModule -> add(subModule, this) } - moduleToAdd.sourcesets.forEach { sourceset -> - val sourcesetNode = DefaultMutableTreeNode(sourceset) - add(sourcesetNode) - pathsToExpand += TreePath(sourcesetNode.path) - } + // sourcesets for now does not provide functionality except storing dependencies + // so, there is no reason for now to show them for user + /* moduleToAdd.sourcesets.forEach { sourceset -> + val sourcesetNode = DefaultMutableTreeNode(sourceset) + add(sourcesetNode) + pathsToExpand += TreePath(sourcesetNode.path) + }*/ } }