diff options
author | Unknwon <u@gogs.io> | 2016-02-02 17:07:40 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-02-02 17:07:40 -0500 |
commit | 995487e82259d9a5e912d57f00dda68db8607d49 (patch) | |
tree | 3c937dd5c1fa0a364b7a348f8d9ca70f7936237d /models/repo.go | |
parent | 5e97693e0e44037bdf60c6399f957102fed7c93c (diff) | |
download | gitea-995487e82259d9a5e912d57f00dda68db8607d49.tar.gz gitea-995487e82259d9a5e912d57f00dda68db8607d49.zip |
Minor fix for #2506
Diffstat (limited to 'models/repo.go')
-rw-r--r-- | models/repo.go | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/models/repo.go b/models/repo.go index a0074a2953..8ce1f7190c 100644 --- a/models/repo.go +++ b/models/repo.go @@ -288,20 +288,6 @@ func (repo *Repository) GetMirror() (err error) { return err } -func (repo *Repository) GetBranch(br string) (*Branch, error) { - if(!git.IsBranchExist(repo.RepoPath(), br)){ - return nil, fmt.Errorf("Branch does not exist: %s", br); - } - return &Branch{ - Path: repo.RepoPath(), - Name: br, - },nil -} - -func (repo *Repository) GetBranches() ([]*Branch, error) { - return GetBranchesByPath(repo.RepoPath()) -} - func (repo *Repository) GetBaseRepo() (err error) { if !repo.IsFork { return nil |