Skip to content

Commit

Permalink
removed commented code from awscredentials.go
Browse files Browse the repository at this point in the history
removed commented code from awscredentials.go
  • Loading branch information
sharadkesarwani committed Sep 14, 2023
1 parent 5b12e46 commit 6f3b161
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions service/account/providers/aws/awscredential.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,22 +143,3 @@ func credentialFromJSON(in []byte) (*Credential, error) {
}
return b, nil
}

/*
type IamRole struct {
IamRole *string `json:"iamRole,omitempty"`
forceSendFields []string
nullFields []string
}
func (o *Credential) SetIamRole(v *string) *Credential {
if o.IamRole = v; o.IamRole == nil {
o.nullFields = append(o.nullFields, "IamRole")
}
return o
}
func (o IamRole) MarshalJSON() ([]byte, error) {
type noMethod IamRole
raw := noMethod(o)
return jsonutil.MarshalJSON(raw, o.forceSendFields, o.nullFields)
}*/

0 comments on commit 6f3b161

Please sign in to comment.