Remove some leftover debug code
authorMatthias Clasen <mclasen@redhat.com>
Thu, 15 Jul 2021 11:58:09 +0000 (07:58 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 15 Jul 2021 13:30:01 +0000 (09:30 -0400)
testsuite/gtk/composetable.c

index 23a95b0d279a13ec7b6602842b0a00c7d3af6018..ca5a5c0eea9df38e8db19ad235dab7bac67f0e40 100644 (file)
@@ -72,21 +72,6 @@ gtk_compose_table_print (GtkComposeTable *table)
                           table->data_size,
                           table->n_chars);
 
-#if 0
-  int index_stride = table->max_seq_len + 1;
-
-  for (int idx = 0; idx < table->n_index_size; idx++)
-    {
-      const guint16 *seq_index = table->data + (idx * index_stride);
-
-      g_print ("<U%x>", seq_index[0]);
-
-      for (int i = 1; i < index_stride; i++)
-        g_print (" %d", seq_index[i]);
-      g_print ("\n");
-    }
-#endif
-
   gtk_compose_table_foreach (table, print_sequence, str);
 
   return g_string_free (str, FALSE);