Skip to content

Commit b3a7e35

Browse files
committed
Minor edits
1 parent ee23f93 commit b3a7e35

File tree

1 file changed

+2
-2
lines changed
  • plugins/core/core/src/software/aws/toolkits/core/utils

1 file changed

+2
-2
lines changed

plugins/core/core/src/software/aws/toolkits/core/utils/TextUtils.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ fun convertMarkdownToHTML(markdown: String): String {
1919

2020
fun extractCodeBlockLanguage(message: String): String {
2121
// This fulfills both the cases of unit test generation(java, python) and general use case(Non java and Non python) languages.
22-
val defaultTestGenResponseLanguage: String = "plaintext"
23-
val indexStart: Int = 3
22+
val defaultTestGenResponseLanguage = "plaintext"
23+
val indexStart = 3
2424
val codeBlockStart = message.indexOf("```")
2525
if (codeBlockStart == -1) {
2626
return defaultTestGenResponseLanguage

0 commit comments

Comments
 (0)