Normalize line endings

This commit is contained in:
Andres G. Aragoneses 2018-03-04 00:38:51 +08:00
parent c1ce5e25ba
commit 3762664c14
2 changed files with 60 additions and 60 deletions

View file

@ -84,21 +84,21 @@ namespace TLSharp.Core.Network
}
return new TcpMessage(seq, body);
}
public bool IsConnected
{
get
{
return this._tcpClient.Connected;
}
}
}
public bool IsConnected
{
get
{
return this._tcpClient.Connected;
}
}
public void Dispose()
{
if (_tcpClient.Connected)
_tcpClient.Close();
}
}
}
}