diff --git a/src/FubarDev.FtpServer/FtpConnection.cs b/src/FubarDev.FtpServer/FtpConnection.cs
index d86f6ac4..9a0a9fce 100644
--- a/src/FubarDev.FtpServer/FtpConnection.cs
+++ b/src/FubarDev.FtpServer/FtpConnection.cs
@@ -932,38 +932,6 @@ public ConnectionClosingNetworkStreamReader(
_connectionClosedCts = connectionClosedCts;
}
- ///
- protected override async Task ReadFromStreamAsync(byte[] buffer, int offset, int length, CancellationToken cancellationToken)
- {
- var readTask = Stream
- .ReadAsync(buffer, offset, length, cancellationToken);
-
- var tcs = new TaskCompletionSource