[lightsoff/wip/gtkview] Removed stdout.printf



commit 4832ffc661167f4b1f0362669472d6b4adf505f5
Author: Robert Roth <robert roth off gmail com>
Date:   Tue Jul 17 00:45:08 2018 +0300

    Removed stdout.printf

 src/game-view-gtk.vala | 2 --
 1 file changed, 2 deletions(-)
---
diff --git a/src/game-view-gtk.vala b/src/game-view-gtk.vala
index 2cf0f24..62cb0ed 100644
--- a/src/game-view-gtk.vala
+++ b/src/game-view-gtk.vala
@@ -13,7 +13,6 @@ public class GtkGameView : Gtk.Stack, GameView {
 
     public void replace_board (BoardView old_board, BoardView new_board, GameView.ReplaceStyle style, bool 
fast = true)
     {
-        stdout.printf ("Changing board %p with board %p\n", old_board, new_board);
         transition_duration = fast ? 500 : 1000;
         switch (style)
         {
@@ -38,7 +37,6 @@ public class GtkGameView : Gtk.Stack, GameView {
 
     public void board_replaced (BoardViewGtk old_board, BoardViewGtk new_board)
     {
-        stdout.printf ("Cleaning board %p, replacing with  %p\n", old_board, new_board);
         @foreach((board) => { if (board != get_visible_child ()) remove(board);});
         board_view = new_board;
         disconnect(handlers.pop_head());


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]