From 92e23b50fe7ca6742ed2f3716b0937761f5eea1b Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Sat, 10 May 2014 19:33:26 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index 7fc2d79d..6c0d8804 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -27,7 +27,7 @@ public class GitRepo : Object - public Array cmds; + public Array cmds; public string gitdir; @@ -46,7 +46,7 @@ public class GitRepo : Object if (!GLib.file_test(this.gitdir , GLib.FileTest.IS_DIR)) { this.gitdir = path; // naked... } - this.cmds = new Array (); + this.cmds = new Array (); //Repo.superclass.constructor.call(this,cfg); } @@ -56,7 +56,7 @@ public class GitRepo : Object * * @argument {Array} files the files to add. */ - public string add ( Array files ) + public string add ( Array files ) { // should really find out if these are untracked files each.. // we run multiple versions to make sure that if one failes, it does not ignore the whole lot.. @@ -78,7 +78,7 @@ public class GitRepo : Object * * @argument {Array} files the files to add. */ - public string remove ( Array files ) + public string remove ( Array files ) { // this may fail if files do not exist.. // should really find out if these are untracked files each.. @@ -113,7 +113,7 @@ public class GitRepo : Object * */ - public string commit ( string message, Array files ) + public string commit ( string message, Array files ) { -- 2.39.2