From cd28d47e64896611081eb62496d65d3cae7e90e8 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 1 Nov 2018 21:12:59 +0800 Subject: [PATCH] GitMonitor.vala --- GitMonitor.vala | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/GitMonitor.vala b/GitMonitor.vala index 7be1ab56..71857b60 100644 --- a/GitMonitor.vala +++ b/GitMonitor.vala @@ -26,12 +26,8 @@ public class GitMonitor : Monitor this.queue = new Array(); GitMonitor.gitmonitor = this; - - - - Timeout.add_full(Priority.LOW, 500, () => { - + //GLib.debug("TIMEOUT queue length = %d, is_runing = %s\n", (int)this.queue.length , this.queueRunning ? "Y" : "N"); //stdout.printf("QL %u: QR: %d\n", this.queue.length, this.queueRunning ? 1 : 0); @@ -54,7 +50,6 @@ public class GitMonitor : Monitor return true; // }); - } public new void pauseError(string failure) @@ -258,7 +253,7 @@ public class GitMonitor : Monitor var ix = GitRepo.indexOf(repo_list, cmd.gitpath); if (ix < 0) { - repo_list.append_val(new GitRepo( gitpath )); + repo_list.append_val( GitRepo.get( gitpath )); ix = GitRepo.indexOf(repo_list, cmd.gitpath); } GLib.debug("GitMonitor.runQueue - adding to repolist %d", ix); -- 2.39.2