浏览代码

removed print

Juan Linietsky 10 年之前
父节点
当前提交
507736690d
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      core/ustring.cpp

+ 0 - 2
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)) {
 		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]));
 			ret.push_back(String::to_double(&c_str()[from]));
 		}
 		}