review feedback; naming : Blob => ByteArray

pull/19511/head
mgravell 6 years ago
parent b352873461
commit 9967e42a7f
  1. 4
      src/csharp/Grpc.Core.Api/Metadata.cs

@ -353,7 +353,7 @@ namespace Grpc.Core
byte[] arr; byte[] arr;
if (length == 0) if (length == 0)
{ {
arr = EmptyBlob; arr = EmptyByteArray;
} }
else else
{ // create a local copy in a fresh array { // create a local copy in a fresh array
@ -369,7 +369,7 @@ namespace Grpc.Core
} }
} }
static readonly byte[] EmptyBlob = new byte[0]; static readonly byte[] EmptyByteArray = new byte[0];
private static string NormalizeKey(string key) private static string NormalizeKey(string key)
{ {

Loading…
Cancel
Save