Remove redudant issue LoadAttributes() calls (#2614)

This commit is contained in:
Morlinest 2017-09-27 14:41:52 +02:00 committed by Andrey Nering
parent 339d7de409
commit cc84ca40d7
2 changed files with 1 additions and 12 deletions

View file

@ -984,12 +984,7 @@ func GetIssueByRef(ref string) (*Issue, error) {
return nil, err
}
issue, err := GetIssueByIndex(repo.ID, index)
if err != nil {
return nil, err
}
return issue, issue.LoadAttributes()
return GetIssueByIndex(repo.ID, index)
}
// GetRawIssueByIndex returns raw issue without loading attributes by index in a repository.