diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go index 16898e36..85737f27 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.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 @@ -91,9 +91,9 @@ func (r *TrustFrameworkKeySetsCollectionRequest) Paging(ctx context.Context, met } var values []TrustFrameworkKeySet 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 { @@ -106,6 +106,7 @@ func (r *TrustFrameworkKeySetsCollectionRequest) Paging(ctx context.Context, met value []TrustFrameworkKeySet ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -193,9 +194,9 @@ func (r *TrustFrameworkPoliciesCollectionRequest) Paging(ctx context.Context, me } var values []TrustFrameworkPolicy 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 { @@ -208,6 +209,7 @@ func (r *TrustFrameworkPoliciesCollectionRequest) Paging(ctx context.Context, me value []TrustFrameworkPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } |