From 9714a36e65a1caa848305531d5200ec5c5104141 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sat, 6 Aug 2016 20:13:27 -0300 Subject: Reverted printable null object, seems to cause bugs around and not sure why. Will have to check better, likely for 3.0 --- core/variant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/variant.cpp') diff --git a/core/variant.cpp b/core/variant.cpp index 96999212a8..a78c07d819 100644 --- a/core/variant.cpp +++ b/core/variant.cpp @@ -1510,7 +1510,7 @@ Variant::operator String() const { switch( type ) { - case NIL: return "Null"; + case NIL: return ""; case BOOL: return _data._bool ? "True" : "False"; case INT: return String::num(_data._int); case REAL: return String::num(_data._real); -- cgit v1.2.3