[ByteCodeViewer] change some service classes' visibility to internal

GitOrigin-RevId: bc3ffb2571821de7442b1beebe4a62629c205016
This commit is contained in:
Bartek Pacia
2025-07-05 23:41:33 +00:00
committed by intellij-monorepo-bot
parent a42b2c1df1
commit 12c8510643
2 changed files with 2 additions and 2 deletions
@@ -17,7 +17,7 @@ import com.intellij.ui.content.Content
* automatically switch to the corresponding bytecode in the bytecode viewer.
*/
@Service(Service.Level.PROJECT)
class BytecodeEditorSynchronizer(private val project: Project) : FileEditorManagerListener {
internal class BytecodeEditorSynchronizer(private val project: Project) : FileEditorManagerListener {
/**
* Called when the selected editor changes.
@@ -19,7 +19,7 @@ import java.util.concurrent.ConcurrentHashMap
* and properly unregistered when the project is disposed.
*/
@Service(Service.Level.PROJECT)
class BytecodeToolWindowService(private val project: Project) {
internal class BytecodeToolWindowService(private val project: Project) {
private val registeredListeners = ConcurrentHashMap<ToolWindow, ContentManagerListener>()
/**