make NetworkChannel#thread private

This commit is contained in:
Derek Wickern 2025-01-11 13:08:18 -08:00
parent a13bfd3ef9
commit f0afda3dd0
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ final class NetworkChannel(
}
}
val thread = new Thread(s"sbt-networkchannel-${connection.getPort}") {
private[this] val thread = new Thread(s"sbt-networkchannel-${connection.getPort}") {
private val ct = "Content-Type: "
private val x1 = "application/sbt-x1"
override def run(): Unit = {