toString() on nullables fixed

This commit is contained in:
Andrey Breslav
2014-09-03 12:15:16 +04:00
parent 619df3a53e
commit 9fb09e62af
2 changed files with 2 additions and 2 deletions
@@ -43,7 +43,7 @@ public abstract class AbstractEvaluateExpressionTest : AbstractAnnotationDescrip
if (compileTimeConstant is StringValue) {
"\\\"${compileTimeConstant.getValue()}\\\""
} else {
compileTimeConstant.toString()
"$compileTimeConstant"
}
}
}