From 50ec5def8e5609a70612d3b287ca0b27d6ccaef3 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 26 Sep 2017 17:23:29 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index 87eb2d45..ea4d1e05 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -353,7 +353,7 @@ public class GitRepo : Object } - public string git_async( string[] args_in, GitAsyncCallback cb ) throws Error, SpawnError + public git_async( string[] args_in, GitAsyncCallback cb ) throws Error, SpawnError { // convert arguments. @@ -395,8 +395,6 @@ public class GitRepo : Object sp.run((err, output) => { cb(output); }); - stdout.printf( "GOT: %s\n" , sp.output); - // parse output for some commands ? - return sp.output; + } } -- 2.39.2