[Modify] Polish it

This commit is contained in:
sta 2019-10-01 19:37:19 +09:00
parent 0c4fd70c48
commit cfe8413037

View File

@ -2135,7 +2135,10 @@ namespace WebSocketSharp
if (source.Length < 2) if (source.Length < 2)
return source; return source;
return !sourceOrder.IsHostOrder () ? source.Reverse () : source; if (sourceOrder.IsHostOrder ())
return source;
return source.Reverse ();
} }
/// <summary> /// <summary>