We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dfc5c5 commit 342a731Copy full SHA for 342a731
ide-common/src/main/kotlin/org/digma/intellij/plugin/auth/AuthManager.kt
@@ -62,8 +62,6 @@ class AuthManager(private val cs: CoroutineScope) : Disposable {
62
63
private val fireChangeAlarm = Alarm(Alarm.ThreadToUse.POOLED_THREAD, this)
64
65
- private var loginOrRefreshAsyncJob: Job? = null
66
-
67
private val loginLogoutSemaphore = Semaphore(1, true)
68
69
//refreshTokenStrategy should be used only from onAuthenticationException
@@ -87,7 +85,6 @@ class AuthManager(private val cs: CoroutineScope) : Disposable {
87
85
88
86
override fun dispose() {
89
myAnalyticsProvider.close()
90
- loginOrRefreshAsyncJob?.cancel()
91
autoRefreshWaitingJob?.cancel()
92
autoRefreshJob?.cancel()
93
}
0 commit comments