SPR-6051 avoiding NPE in TypedValue.toString()

This commit is contained in:
Mark Fisher 2009-10-27 23:59:46 +00:00
parent d1f3772ca1
commit 776edbcae3
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}