[Modify] Polish it
This commit is contained in:
parent
d74fe553b9
commit
0c746bfcfa
@ -785,8 +785,12 @@ namespace WebSocketSharp.Net
|
|||||||
private static int checkColonSeparated (string header)
|
private static int checkColonSeparated (string header)
|
||||||
{
|
{
|
||||||
var idx = header.IndexOf (':');
|
var idx = header.IndexOf (':');
|
||||||
if (idx == -1)
|
|
||||||
throw new ArgumentException ("No colon could be found.", "header");
|
if (idx == -1) {
|
||||||
|
var msg = "No colon could be found.";
|
||||||
|
|
||||||
|
throw new ArgumentException (msg, "header");
|
||||||
|
}
|
||||||
|
|
||||||
return idx;
|
return idx;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user