Fix EA-209316: Allow null JDI values in captured value data
This commit is contained in:
+1
-1
@@ -33,7 +33,7 @@ data class CapturedValueData(
|
||||
) : ValueDescriptorImpl(delegate.project) {
|
||||
override fun getName() = valueName
|
||||
|
||||
override fun calcValue(evaluationContext: EvaluationContextImpl?): Value = delegate.calcValue(evaluationContext)
|
||||
override fun calcValue(evaluationContext: EvaluationContextImpl?): Value? = delegate.calcValue(evaluationContext)
|
||||
override fun getDescriptorEvaluation(context: DebuggerContext?): PsiExpression = delegate.getDescriptorEvaluation(context)
|
||||
override fun getModifier(value: JavaValue?): XValueModifier = delegate.getModifier(value)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user