提交 776edbca 编写于 作者: M Mark Fisher

SPR-6051 avoiding NPE in TypedValue.toString()

上级 d1f3772c
......@@ -72,7 +72,7 @@ public class TypedValue {
@Override
public String toString() {
StringBuilder str = new StringBuilder();
str.append("TypedValue: ").append(this.value).append(" of type ").append(this.typeDescriptor.asString());
str.append("TypedValue: ").append(this.value).append(" of type ").append(this.getTypeDescriptor().asString());
return str.toString();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册