1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Removed buffered input reader.

This commit is contained in:
Koen 2024-01-06 22:31:24 +01:00
parent c4e9303cc3
commit 84c6c42349

View file

@ -126,7 +126,7 @@ class TcpListenerService(private val _networkService: NetworkService, private va
val bufferSize = 4096
val buffer = ByteArray(bufferSize)
val inputStream = BufferedInputStream(socket.getInputStream())
val inputStream = socket.getInputStream()
var bytesRead: Int
while (!_stopped) {