Skip to content

Commit

Permalink
Remove unnecessary _
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavila committed May 6, 2019
1 parent 8074b3b commit bd7629d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions provider/offline.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ func (op *offlineProvider) Close() error {
return nil
}

func (op *offlineProvider) Provide(_ cid.Cid) error {
func (op *offlineProvider) Provide(cid.Cid) error {
return nil
}

func (op *offlineProvider) Reprovide(_ context.Context) error {
func (op *offlineProvider) Reprovide(context.Context) error {
return nil
}

2 comments on commit bd7629d

@GitCop
Copy link

@GitCop GitCop commented on bd7629d May 6, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

We ask for a few features in the commit message for Open Source licensing hygiene and commit message clarity.
git commit --amend can often help you quickly improve the commit message.
Guidelines and a script are available to help in the long run.
Your feedback on GitCop is welcome on this issue.


This message was auto-generated by https://gitcop.com

@GitCop
Copy link

@GitCop GitCop commented on bd7629d May 6, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

We ask for a few features in the commit message for Open Source licensing hygiene and commit message clarity.
git commit --amend can often help you quickly improve the commit message.
Guidelines and a script are available to help in the long run.
Your feedback on GitCop is welcome on this issue.


This message was auto-generated by https://gitcop.com

Please sign in to comment.