File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
type unusableHTTPClient struct {}
11
11
12
- func (u unusableHTTPClient ) Do (req * http.Request ) (* http.Response , error ) {
12
+ func (u unusableHTTPClient ) Do (_ * http.Request ) (* http.Response , error ) {
13
13
panic ("should not be called" )
14
14
}
15
15
Original file line number Diff line number Diff line change @@ -28,6 +28,6 @@ func (c *ZipReadonly) Get(key string) ([]byte, error) {
28
28
return data , nil
29
29
}
30
30
31
- func (c * ZipReadonly ) Set (key string , value []byte ) error {
31
+ func (c * ZipReadonly ) Set (_ string , _ []byte ) error {
32
32
return fmt .Errorf ("unsupported operation: set" )
33
33
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
13
13
14
14
type unusableHTTPClient struct {}
15
15
16
- func (u unusableHTTPClient ) Do (req * http.Request ) (* http.Response , error ) {
16
+ func (u unusableHTTPClient ) Do (_ * http.Request ) (* http.Response , error ) {
17
17
panic ("should not be called" )
18
18
}
19
19
You can’t perform that action at this time.
0 commit comments