Skip to content

Commit c2e6b58

Browse files
committed
[dotnet] missing semicolon preventing build
1 parent cde3c8a commit c2e6b58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/Remote/SendingRemoteHttpRequestEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public void AddHeader(string headerName, string headerValue)
106106

107107
if (headerValue == null)
108108
{
109-
throw new ArgumentNullException("headerValue", "Header value may not be null.")
109+
throw new ArgumentNullException("headerValue", "Header value may not be null.");
110110
}
111111

112112
this.headers[headerName] = headerValue;

0 commit comments

Comments
 (0)