From 9252bba7b614631be0c8942ed7ef6ac8f369c92e Mon Sep 17 00:00:00 2001 From: Vladimir Krivosheev Date: Sun, 29 Dec 2024 16:28:11 +0100 Subject: [PATCH] IJ-CR-146078 don't export core.impl GitOrigin-RevId: ae848f09ca7574692659498bf35c82a91dc4fa6b --- .../plugins/fsharp/services/fsi/FsiInputOutputProcessor.kt | 2 +- .../rider/plugins/fsharp/services/fsi/FsiProcessHandler.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiInputOutputProcessor.kt b/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiInputOutputProcessor.kt index e937ea27d5..b727826c59 100644 --- a/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiInputOutputProcessor.kt +++ b/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiInputOutputProcessor.kt @@ -13,7 +13,7 @@ import com.jetbrains.rider.ideaInterop.fileTypes.fsharp.highlighting.FSharpSynta import com.jetbrains.rider.ideaInterop.fileTypes.fsharp.highlighting.FsiOutputSyntaxHighlighter import com.jetbrains.rider.plugins.fsharp.services.fsi.consoleRunners.FsiConsoleRunnerBase -class FsiInputOutputProcessor(val fsiRunner: FsiConsoleRunnerBase) { +internal class FsiInputOutputProcessor(val fsiRunner: FsiConsoleRunnerBase) { private var isInitialText = true private var nextOutputTextIsFirst = true diff --git a/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiProcessHandler.kt b/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiProcessHandler.kt index 3a432a404f..0d61ba6e4c 100644 --- a/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiProcessHandler.kt +++ b/rider-fsharp/src/main/java/com/jetbrains/rider/plugins/fsharp/services/fsi/FsiProcessHandler.kt @@ -14,7 +14,7 @@ import kotlinx.coroutines.channels.Channel import kotlinx.coroutines.channels.consumeEach import kotlinx.coroutines.channels.trySendBlocking -class FsiProcessHandler( +internal class FsiProcessHandler( parentLifetime: Lifetime, private val fsiInputOutputProcessor: FsiInputOutputProcessor, process: Process,