forked from TrueCloudLab/restic
Replace lots of unused parameters with _
The parameters are required by the implemented function signature or interface.
This commit is contained in:
parent
d1a5ec7839
commit
472bf5184f
19 changed files with 30 additions and 30 deletions
|
@ -154,7 +154,7 @@ type mockReader struct {
|
|||
closed bool
|
||||
}
|
||||
|
||||
func (rd *mockReader) Read(p []byte) (n int, err error) {
|
||||
func (rd *mockReader) Read(_ []byte) (n int, err error) {
|
||||
return 0, nil
|
||||
}
|
||||
func (rd *mockReader) Close() error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue