diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-09-25 18:43:06 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-09-25 18:43:06 (GMT) |
commit | 8df6567b5213fe842e329ad1102c5531d7c509bb (patch) | |
tree | 19218ffe5d30a5578e3e7d1cd2aaf6ed764def67 /src/format/dex | |
parent | 3c970a0a1b74a1991be303132221329f3eef0b91 (diff) |
Removed debug code.
Diffstat (limited to 'src/format/dex')
-rw-r--r-- | src/format/dex/pool.c | 10 |
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); |