Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit d3f8f8a

Browse files
authored
chore: should use xx.String() instead of string(xx.Bytes()) (#725)
1 parent be633f7 commit d3f8f8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autorest/authorization_storage.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func buildCanonicalizedResource(accountName, uri string, keyType SharedKeyType)
190190
}
191191
}
192192

193-
return string(cr.Bytes()), nil
193+
return cr.String(), nil
194194
}
195195

196196
func getCanonicalizedAccountName(accountName string) string {
@@ -289,7 +289,7 @@ func buildCanonicalizedHeader(headers http.Header) string {
289289
ch.WriteRune('\n')
290290
}
291291

292-
return strings.TrimSuffix(string(ch.Bytes()), "\n")
292+
return strings.TrimSuffix(ch.String(), "\n")
293293
}
294294

295295
func createAuthorizationHeader(accountName string, accountKey []byte, canonicalizedString string, keyType SharedKeyType) string {

0 commit comments

Comments
 (0)