Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.

Commit 062584c

Browse files
Merge pull request #64 from stack-spot/bug/sc-392379/ide-intellij-bug-validação-requirement-em
Bug Fix: Remove template requirement validation
2 parents dd357d4 + de68dba commit 062584c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/kotlin/com/stackspot/intellij/services/StackSpotToolWindowService.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,12 @@ class StackSpotToolWindowService {
6060
}
6161

6262
fun pluginsOrTemplatesNotApplied(plugins: List<String>? = null): List<String> {
63+
/**
64+
* Link to check: https://app.shortcut.com/stackspot/story/392379/ide-intellij-bug-valida%C3%A7%C3%A3o-requirement-em-apply-plugin-com-app-sem-template
65+
*/
66+
6367
return plugins
64-
?.filter { p -> appliedPlugins.none { ap -> ap.templateDataPath == p } && p != template?.templateDataPath }
68+
?.filter { p -> appliedPlugins.none { ap -> ap.templateDataPath == p } }
6569
?.toList() ?: listOf()
6670
}
6771
}

0 commit comments

Comments
 (0)