summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorreduz <reduzio@gmail.com>2015-12-29 12:56:58 -0300
committerreduz <reduzio@gmail.com>2015-12-29 12:56:58 -0300
commit77b5b4f4dfcd9d3bc050d3dda84847f1ee088234 (patch)
treee7bf5a6414e674942b9d005d46e765470b09ee39 /core
parent974e5362bcb9bf32ee5fdb13936a1231fec93567 (diff)
removed some prints
Diffstat (limited to 'core')
-rw-r--r--core/compressed_translation.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/compressed_translation.cpp b/core/compressed_translation.cpp
index 45fd4b5080..3f668dfade 100644
--- a/core/compressed_translation.cpp
+++ b/core/compressed_translation.cpp
@@ -410,15 +410,15 @@ bool PHashTranslation::_set(const StringName& p_name, const Variant& p_value) {
String name = p_name.operator String();
if (name=="hash_table") {
hash_table=p_value;
- print_line("translation: loaded hash table of size: "+itos(hash_table.size()));
+ //print_line("translation: loaded hash table of size: "+itos(hash_table.size()));
} else if (name=="bucket_table") {
bucket_table=p_value;
- print_line("translation: loaded bucket table of size: "+itos(bucket_table.size()));
+ //print_line("translation: loaded bucket table of size: "+itos(bucket_table.size()));
} else if (name=="strings") {
strings=p_value;
- print_line("translation: loaded string table of size: "+itos(strings.size()));
+ //print_line("translation: loaded string table of size: "+itos(strings.size()));
} else if (name=="load_from") {
- print_line("generating");
+ //print_line("generating");
generate(p_value);
} else
return false;