diff options
Diffstat (limited to 'src/format')
-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); |