diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go index 8601fe38..51eff754 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -75,9 +75,9 @@ func (r *ExactMatchDataStoreSessionsCollectionRequest) Paging(ctx context.Contex } var values []ExactMatchSession for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -90,6 +90,7 @@ func (r *ExactMatchDataStoreSessionsCollectionRequest) Paging(ctx context.Contex value []ExactMatchSession ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -177,9 +178,9 @@ func (r *ExactMatchLookupJobMatchingRowsCollectionRequest) Paging(ctx context.Co } var values []LookupResultRow for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -192,6 +193,7 @@ func (r *ExactMatchLookupJobMatchingRowsCollectionRequest) Paging(ctx context.Co value []LookupResultRow ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } |