GitRepo.vala
authorAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 14:03:12 +0000 (22:03 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 14:03:12 +0000 (22:03 +0800)
GitRepo.vala

index 60f33e6..b66dd01 100644 (file)
@@ -19,7 +19,7 @@ public class GitRepo : Object
     /**
     * index of.. matching gitpath..
     */
-     public static int indexOfAdd( Array<GitRepo> repos, string gitpath) {
+     public static int indexOf( Array<GitRepo> repos, string gitpath) {
         for(var i =0; i < repos.length; i++) {
             if (repos.index(i).gitdir == gitpath) {
                 return i;