Apply Kotlin inspection "Unnecessary type argument" on whole project

GitOrigin-RevId: 70a38b512309685d57bb5eddf2fc5068f14fe481
This commit is contained in:
Alexey Belkov
2023-05-27 11:24:35 +04:00
committed by intellij-monorepo-bot
parent 391cf0adcd
commit 4467dc883b
103 changed files with 151 additions and 144 deletions

View File

@@ -13,7 +13,7 @@ class PyOnDemandValueEvaluator(linkText: @Nls String,
override fun startEvaluation(callback: XFullValueEvaluationCallback) {
node.setFullValueEvaluator(PyLoadingValueEvaluator(PydevBundle.message("pydev.loading.value"), myDebugProcess, myExpression))
callback.evaluated("... Loading Value")
val pyAsyncValue = PyFrameAccessor.PyAsyncValue<String>(debugValue, debugValue.createDebugValueCallback())
val pyAsyncValue = PyFrameAccessor.PyAsyncValue(debugValue, debugValue.createDebugValueCallback())
myDebugProcess.loadAsyncVariablesValues(null, listOf(pyAsyncValue))
}