@@ -19,52 +19,52 @@ func (n NullDownloader) SetContext(_ context.Context) {}
1919
2020// GetRepoInfo returns a repository information
2121func (n NullDownloader ) GetRepoInfo () (* Repository , error ) {
22- return nil , & ErrNotSupported {Entity : "RepoInfo" }
22+ return nil , ErrNotSupported {Entity : "RepoInfo" }
2323}
2424
2525// GetTopics return repository topics
2626func (n NullDownloader ) GetTopics () ([]string , error ) {
27- return nil , & ErrNotSupported {Entity : "Topics" }
27+ return nil , ErrNotSupported {Entity : "Topics" }
2828}
2929
3030// GetMilestones returns milestones
3131func (n NullDownloader ) GetMilestones () ([]* Milestone , error ) {
32- return nil , & ErrNotSupported {Entity : "Milestones" }
32+ return nil , ErrNotSupported {Entity : "Milestones" }
3333}
3434
3535// GetReleases returns releases
3636func (n NullDownloader ) GetReleases () ([]* Release , error ) {
37- return nil , & ErrNotSupported {Entity : "Releases" }
37+ return nil , ErrNotSupported {Entity : "Releases" }
3838}
3939
4040// GetLabels returns labels
4141func (n NullDownloader ) GetLabels () ([]* Label , error ) {
42- return nil , & ErrNotSupported {Entity : "Labels" }
42+ return nil , ErrNotSupported {Entity : "Labels" }
4343}
4444
4545// GetIssues returns issues according start and limit
4646func (n NullDownloader ) GetIssues (page , perPage int ) ([]* Issue , bool , error ) {
47- return nil , false , & ErrNotSupported {Entity : "Issues" }
47+ return nil , false , ErrNotSupported {Entity : "Issues" }
4848}
4949
5050// GetComments returns comments of an issue or PR
5151func (n NullDownloader ) GetComments (commentable Commentable ) ([]* Comment , bool , error ) {
52- return nil , false , & ErrNotSupported {Entity : "Comments" }
52+ return nil , false , ErrNotSupported {Entity : "Comments" }
5353}
5454
5555// GetAllComments returns paginated comments
5656func (n NullDownloader ) GetAllComments (page , perPage int ) ([]* Comment , bool , error ) {
57- return nil , false , & ErrNotSupported {Entity : "AllComments" }
57+ return nil , false , ErrNotSupported {Entity : "AllComments" }
5858}
5959
6060// GetPullRequests returns pull requests according page and perPage
6161func (n NullDownloader ) GetPullRequests (page , perPage int ) ([]* PullRequest , bool , error ) {
62- return nil , false , & ErrNotSupported {Entity : "PullRequests" }
62+ return nil , false , ErrNotSupported {Entity : "PullRequests" }
6363}
6464
6565// GetReviews returns pull requests review
6666func (n NullDownloader ) GetReviews (reviewable Reviewable ) ([]* Review , error ) {
67- return nil , & ErrNotSupported {Entity : "Reviews" }
67+ return nil , ErrNotSupported {Entity : "Reviews" }
6868}
6969
7070// FormatCloneURL add authentication into remote URLs
0 commit comments