mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[ByteCodeViewer] change some service classes' visibility to internal
GitOrigin-RevId: bc3ffb2571821de7442b1beebe4a62629c205016
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a42b2c1df1
commit
12c8510643
+1
-1
@@ -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>()
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user