stub: fix null check in MetadataUtils.

Fixes #5045
This commit is contained in:
ST-DDT 2018-11-13 17:35:47 +01:00 committed by Carl Mastrangelo
parent 7a89ce2a90
commit 417c41b6cb
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public final class MetadataUtils {
// Non private to avoid synthetic class
HeaderAttachingClientInterceptor(Metadata extraHeaders) {
this.extraHeaders = checkNotNull(extraHeaders, extraHeaders);
this.extraHeaders = checkNotNull(extraHeaders, "extraHeaders");
}
@Override