From 6f3b1610af2c52712594e3b4664bc22789c1e57a Mon Sep 17 00:00:00 2001 From: sharadkesarwani Date: Thu, 14 Sep 2023 18:13:27 +0530 Subject: [PATCH] removed commented code from awscredentials.go removed commented code from awscredentials.go --- .../account/providers/aws/awscredential.go | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/service/account/providers/aws/awscredential.go b/service/account/providers/aws/awscredential.go index 4d7593ca..e7b430fb 100644 --- a/service/account/providers/aws/awscredential.go +++ b/service/account/providers/aws/awscredential.go @@ -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) -}*/