Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ public class Projector : IDisposable
/// <summary>
/// The connection client
/// </summary>
TcpClient? _tcpClient = null;
private TcpClient? _tcpClient = null;
/// <summary>
/// The Network stream the _client provides
/// </summary>
NetworkStream?_stream = null;
private NetworkStream? _stream = null;

private bool _isDisposed;

Expand Down
Loading