summaryrefslogtreecommitdiff
path: root/src/format
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-09-25 18:43:06 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-09-25 18:43:06 (GMT)
commit8df6567b5213fe842e329ad1102c5531d7c509bb (patch)
tree19218ffe5d30a5578e3e7d1cd2aaf6ed764def67 /src/format
parent3c970a0a1b74a1991be303132221329f3eef0b91 (diff)
Removed debug code.
Diffstat (limited to 'src/format')
-rw-r--r--src/format/dex/pool.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/format/dex/pool.c b/src/format/dex/pool.c
index f624ff3..7574638 100644
--- a/src/format/dex/pool.c
+++ b/src/format/dex/pool.c
@@ -424,13 +424,9 @@ GBinRoutine *get_prototype_from_dex_pool(GDexFormat *format, uint32_t index)
type = get_type_from_dex_pool(format, args.list[i].type_idx);
if (type == NULL) continue;
- printf(" ++ PROTO POOL ++ type '%s'\n", g_data_type_to_string(type));
-
arg = g_binary_variable_new(type);
g_binary_routine_add_arg(result, arg);///////////////////////
- printf(" ++ PROTO POOL ++ arg '%s'\n", g_binary_variable_to_string(arg, true));
-
}
/* Mise en place finale */
@@ -439,12 +435,6 @@ GBinRoutine *get_prototype_from_dex_pool(GDexFormat *format, uint32_t index)
g_binary_routine_set_name(result, strdup("..."));
- printf(" PROTO POOL // from %s to %s\n",
- name,
- result == NULL ? NULL :
- g_binary_routine_to_string(result));
-
-
#if 1
if (result != NULL)///////////////////////
g_binary_routine_set_return_type(result, type);