Skip to content

Commit eb23e0b

Browse files
committed
Minor cleanup
1 parent 7e4a106 commit eb23e0b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Confluent.SchemaRegistry.Encryption/KmsClientWrapper.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ private IList<string> GetKmsKeyIds()
8989
}
9090
if (!string.IsNullOrEmpty(alternateKmsKeyIds))
9191
{
92-
char[] separators = { ',' };
93-
string[] ids = alternateKmsKeyIds.Split(separators, StringSplitOptions.RemoveEmptyEntries);
92+
string[] ids = alternateKmsKeyIds.Split(',', StringSplitOptions.RemoveEmptyEntries);
9493
foreach (string id in ids)
9594
{
9695
if (!string.IsNullOrEmpty(id))

0 commit comments

Comments
 (0)