Skip to content

Commit 14d566d

Browse files
committed
lint
1 parent 091597b commit 14d566d

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ object IdeVersions {
6565
),
6666
Profile(
6767
name = "2024.3",
68-
gateway = ProductProfile(
69-
sdkVersion = "243.21565.196-CUSTOM-SNAPSHOT",
70-
bundledPlugins = listOf("org.jetbrains.plugins.terminal")
71-
),
7268
community = ProductProfile(
7369
sdkVersion = "2024.3",
7470
bundledPlugins = commonPlugins + listOf(

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/inlay/InlineCompletionRemoteRendererFactory.kt

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,23 @@ import com.intellij.xdebugger.ui.DebuggerColors
1515
object InlineCompletionRemoteRendererFactory {
1616
fun createLineInlay(editor: Editor, text: String): EditorCustomElementRenderer =
1717
InlineCompletionLineRenderer(
18-
editor, text, editor.colorsScheme.getAttributes(DebuggerColors.INLINED_VALUES_EXECUTION_LINE)
18+
editor,
19+
text,
20+
editor.colorsScheme.getAttributes(DebuggerColors.INLINED_VALUES_EXECUTION_LINE)
1921
)
2022

2123
fun createBlockInlays(editor: Editor, block: List<String>): List<EditorCustomElementRenderer> =
2224
block.map {
2325
InlineCompletionLineRenderer(
24-
editor,
25-
listOf(
26-
InlineCompletionRenderTextBlock(
27-
it, editor.colorsScheme.getAttributes(
28-
DebuggerColors.INLINED_VALUES_EXECUTION_LINE
29-
)
30-
)
26+
editor,
27+
listOf(
28+
InlineCompletionRenderTextBlock(
29+
it,
30+
editor.colorsScheme.getAttributes(
31+
DebuggerColors.INLINED_VALUES_EXECUTION_LINE
32+
)
3133
)
34+
)
3235
)
3336
}
3437
}

plugins/toolkit/jetbrains-gateway/src/software/aws/toolkits/jetbrains/gateway/connection/workflow/StartBackend.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ class StartBackend(
4949
val clientHandle = ThinClientTrackerService.getInstance().associate(envId) {
5050
val start = System.currentTimeMillis()
5151
val thinClientHandle = try {
52-
LinkedClientManager.getInstance().startNewClient(lifetime, localLink, URLEncoder.encode(message("caws.workspace.backend.title"), Charsets.UTF_8)) {
52+
LinkedClientManager.getInstance().startNewClient(
53+
lifetime,
54+
localLink,
55+
URLEncoder.encode(message("caws.workspace.backend.title"), Charsets.UTF_8)
56+
) {
5357
CodecatalystTelemetry.devEnvironmentWorkflowStatistic(
5458
project = null,
5559
userId = lazilyGetUserId(),

0 commit comments

Comments
 (0)