diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-01-03 16:00:37 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-01-03 16:00:37 -0300 |
commit | 507736690de2f4125aec25ecb0339196fb89ba56 (patch) | |
tree | 754ba87f4ed509fd46ea99666176856deecec540 | |
parent | 167c1027bea5b208e5878c96682eb2bec6f59633 (diff) |
removed print
-rw-r--r-- | core/ustring.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index 50e5dc95c7..581cc29440 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -655,8 +655,6 @@ Vector<float> String::split_floats_mk(const Vector<String> &p_splitters,bool p_a } if (p_allow_empty || (end>from)) { - double d = String::to_double(&c_str()[from]); - print_line("get db: "+rtos(d)); ret.push_back(String::to_double(&c_str()[from])); } |