-
Notifications
You must be signed in to change notification settings - Fork 273
deps(amazonq): client handles openTab requests from server #5630
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
This is needed to unblock chat responses but needs a lot more work |
Qodana Community for JVM17 new problems were found
💡 Qodana analysis was run in the pull request mode: only the changed files were checked Contact Qodana teamContact us at [email protected]
|
| companion object { | ||
| private val stringToEnum: Map<String, IconType> = entries.associateBy { it.name.lowercase() } | ||
|
|
||
| fun fromString(value: String): IconType = stringToEnum[value] ?: throw IllegalArgumentException("Unknown IconType: $value") |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
| } | ||
|
|
||
| enum class Status { | ||
| INFO, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
|
|
||
| enum class Status { | ||
| INFO, | ||
| SUCCESS, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
| enum class Status { | ||
| INFO, | ||
| SUCCESS, | ||
| WARNING, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
| INFO, | ||
| SUCCESS, | ||
| WARNING, | ||
| ERROR, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
|
|
||
| enum class MessageType { | ||
| ANSWER, | ||
| PROMPT, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
| enum class MessageType { | ||
| ANSWER, | ||
| PROMPT, | ||
| SYSTEM_PROMPT, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
| ANSWER, | ||
| PROMPT, | ||
| SYSTEM_PROMPT, | ||
| DIRECTIVE, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
| PROMPT, | ||
| SYSTEM_PROMPT, | ||
| DIRECTIVE, | ||
| TOOL, |
Check warning
Code scanning / QDJVMC
Unused symbol Warning
Types of changes
Description
Checklist
License
I confirm that my contribution is made under the terms of the Apache 2.0 license.