Skip to content

Commit 1902e35

Browse files
committed
bump
1 parent b885ac0 commit 1902e35

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/core/credentials/sso/SsoLoginCallbackProvider.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ object DefaultSsoPrompt : SsoPrompt {
6767
val result = ConfirmUserCodeLoginDialog(
6868
authorization.userCode,
6969
AwsCoreBundle.message("credentials.sso.login.title"),
70-
CredentialType.SsoProfile
7170
).showAndGet()
7271

7372
if (result) {
@@ -122,7 +121,6 @@ object DefaultBearerTokenPrompt : BearerTokenPrompt {
122121
val codeCopied = ConfirmUserCodeLoginDialog(
123122
authorization.userCode,
124123
AwsCoreBundle.message("credentials.sono.login"),
125-
CredentialType.BearerToken
126124
).showAndGet()
127125

128126
if (codeCopied) {

plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/core/credentials/sso/bearer/ConfirmUserCodeLoginDialog.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,12 @@ import com.intellij.util.ui.JBFont
1919
import com.intellij.util.ui.components.BorderLayoutPanel
2020
import software.aws.toolkits.core.utils.tryOrNull
2121
import software.aws.toolkits.resources.AwsCoreBundle
22-
import software.aws.toolkits.telemetry.CredentialType
2322
import java.awt.datatransfer.StringSelection
2423
import javax.swing.JComponent
2524

2625
class ConfirmUserCodeLoginDialog(
2726
private val authCode: String,
28-
private val dialogTitle: String,
29-
private val credentialType: CredentialType,
27+
dialogTitle: String,
3028
) : DialogWrapper(null) {
3129

3230
private val pane = panel {

0 commit comments

Comments
 (0)