We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e4a106 commit eb23e0bCopy full SHA for eb23e0b
src/Confluent.SchemaRegistry.Encryption/KmsClientWrapper.cs
@@ -89,8 +89,7 @@ private IList<string> GetKmsKeyIds()
89
}
90
if (!string.IsNullOrEmpty(alternateKmsKeyIds))
91
{
92
- char[] separators = { ',' };
93
- string[] ids = alternateKmsKeyIds.Split(separators, StringSplitOptions.RemoveEmptyEntries);
+ string[] ids = alternateKmsKeyIds.Split(',', StringSplitOptions.RemoveEmptyEntries);
94
foreach (string id in ids)
95
96
if (!string.IsNullOrEmpty(id))
0 commit comments