Skip to content

Commit ee16d5f

Browse files
committed
tst
1 parent 2b2c4d3 commit ee16d5f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

buildSrc/src/main/kotlin/software/aws/toolkits/gradle/intellij/IdeVersions.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ object IdeVersions {
2222
private val commonPlugins = listOf(
2323
"Git4Idea",
2424
"org.jetbrains.plugins.terminal",
25-
"org.jetbrains.plugins.yaml"
25+
"org.jetbrains.plugins.yaml",
2626
)
2727

2828
private val ideProfiles = listOf(
@@ -34,6 +34,7 @@ object IdeVersions {
3434
"com.intellij.java",
3535
"com.intellij.gradle",
3636
"org.jetbrains.idea.maven",
37+
"com.jetbrains.codeWithMe",
3738
),
3839
marketplacePlugins = listOf(
3940
"org.toml.lang:242.20224.155",
@@ -71,6 +72,7 @@ object IdeVersions {
7172
"com.intellij.java",
7273
"com.intellij.gradle",
7374
"org.jetbrains.idea.maven",
75+
"com.jetbrains.codeWithMe",
7476
),
7577
marketplacePlugins = listOf(
7678
"org.toml.lang:243.21565.122",
@@ -112,6 +114,7 @@ object IdeVersions {
112114
"com.intellij.java",
113115
"com.intellij.gradle",
114116
"org.jetbrains.idea.maven",
117+
"com.jetbrains.codeWithMe",
115118
),
116119
marketplacePlugins = listOf(
117120
"PythonCore:251.23774.460",

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/codescan/CodeWhispererCodeScanManager.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -973,8 +973,8 @@ class CodeWhispererCodeScanManager(val project: Project, private val defaultScop
973973
val codeScanTreeModel = CodeWhispererCodeScanTreeModel(codeScanTreeNodeRoot)
974974
val totalIssuesCount = codeScanTreeModel.getTotalIssuesCount()
975975
if (totalIssuesCount > 0) {
976-
withToolWindow {
977-
it.contentManager.contents.filter { it.isCodeScanView() }
976+
withToolWindow { problemsWindow ->
977+
problemsWindow.contentManager.contents.filter { it.isCodeScanView() }
978978
.forEach {
979979
it.displayName = message("codewhisperer.codescan.scan_display_with_issues", totalIssuesCount, INACTIVE_TEXT_COLOR)
980980
}
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class CwmProblemsViewMutator : ProblemsViewMutator {
1414
host.getToolWindow(ProblemsView.ID)?.let {
1515
runnable(it)
1616
}
17-
1817
}
1918
}
2019
}

0 commit comments

Comments
 (0)