Skip to content

Commit

Permalink
base: Remove the SetID method from Response.
Browse files Browse the repository at this point in the history
Since #52 was merged, this method is no longer used.
  • Loading branch information
creachadair committed Sep 12, 2021
1 parent 14261a3 commit a746f74
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions base.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,6 @@ type Response struct {
// ID returns the request identifier for r.
func (r *Response) ID() string { return r.id }

// SetID sets the request identifier for r. This is for use in proxies.
func (r *Response) SetID(id string) { r.id = id }

// Error returns a non-nil *Error if the response contains an error.
func (r *Response) Error() *Error { return r.err }

Expand Down

0 comments on commit a746f74

Please sign in to comment.