mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
IJPL-164182 fix api dump, cleanup
(cherry picked from commit 2d192d616ff9dece8c73ecc8a55d3773e24c290f) IJ-CR-147194 GitOrigin-RevId: d59eaf2032d107beb311e975c469f55a8b47f9f6
This commit is contained in:
committed by
intellij-monorepo-bot
parent
cfb1784c09
commit
b0c47c7e24
@@ -19428,7 +19428,8 @@ f:com.intellij.webcore.packaging.PackagingErrorDialog
|
||||
- <init>(java.lang.String,com.intellij.webcore.packaging.PackageManagementService$ErrorDescription):V
|
||||
f:com.intellij.workspaceModel.ide.impl.legacyBridge.project.ProjectRootManagerBridge
|
||||
- com.intellij.openapi.Disposable
|
||||
- com.intellij.openapi.roots.impl.ProjectRootManagerImpl
|
||||
- com.intellij.openapi.components.PersistentStateComponent
|
||||
- com.intellij.openapi.roots.ex.ProjectRootManagerEx
|
||||
- <init>(com.intellij.openapi.project.Project,kotlinx.coroutines.CoroutineScope):V
|
||||
f:com.intellij.workspaceModel.ide.impl.legacyBridge.project.ProjectRootManagerBridge$ModuleDependencyListenerImpl
|
||||
- java.util.EventListener
|
||||
|
||||
@@ -366,22 +366,6 @@ c:com.intellij.openapi.roots.impl.ProjectFileIndexFacade
|
||||
- isInSourceContent(com.intellij.openapi.vfs.VirtualFile):Z
|
||||
- isUnderIgnored(com.intellij.openapi.vfs.VirtualFile):Z
|
||||
- isValidAncestor(com.intellij.openapi.vfs.VirtualFile,com.intellij.openapi.vfs.VirtualFile):Z
|
||||
c:com.intellij.openapi.roots.impl.ProjectRootManagerImpl
|
||||
- com.intellij.openapi.roots.ex.ProjectRootManagerEx
|
||||
- com.intellij.openapi.components.PersistentStateComponent
|
||||
- sf:Companion:com.intellij.openapi.roots.impl.ProjectRootManagerImpl$Companion
|
||||
- <init>(com.intellij.openapi.project.Project,kotlinx.coroutines.CoroutineScope):V
|
||||
- addProjectJdkListener(com.intellij.openapi.roots.ex.ProjectRootManagerEx$ProjectJdkListener):V
|
||||
- getFileIndex():com.intellij.openapi.roots.ProjectFileIndex
|
||||
- sf:getInstanceImpl(com.intellij.openapi.project.Project):com.intellij.openapi.roots.impl.ProjectRootManagerImpl
|
||||
- f:getProject():com.intellij.openapi.project.Project
|
||||
- makeRootsChange(java.lang.Runnable,com.intellij.openapi.project.RootsChangeRescanningInfo):V
|
||||
- makeRootsChange(java.lang.Runnable,Z,Z):V
|
||||
- f:projectJdkChanged():V
|
||||
- removeProjectJdkListener(com.intellij.openapi.roots.ex.ProjectRootManagerEx$ProjectJdkListener):V
|
||||
- withRootsChange(com.intellij.openapi.project.RootsChangeRescanningInfo):java.lang.AutoCloseable
|
||||
f:com.intellij.openapi.roots.impl.ProjectRootManagerImpl$Companion
|
||||
- f:getInstanceImpl(com.intellij.openapi.project.Project):com.intellij.openapi.roots.impl.ProjectRootManagerImpl
|
||||
a:com.intellij.openapi.roots.impl.SdkFinder
|
||||
- sf:EP_NAME:com.intellij.openapi.extensions.ExtensionPointName
|
||||
- <init>():V
|
||||
|
||||
@@ -38,8 +38,11 @@ private const val PROJECT_JDK_TYPE_ATTR = "project-jdk-type"
|
||||
private const val ATTRIBUTE_VERSION = "version"
|
||||
|
||||
@State(name = "ProjectRootManager")
|
||||
open class ProjectRootManagerImpl(val project: Project,
|
||||
@JvmField protected val coroutineScope: CoroutineScope) : ProjectRootManagerEx(), PersistentStateComponent<Element> {
|
||||
@ApiStatus.Internal
|
||||
open class ProjectRootManagerImpl(
|
||||
@JvmField val project: Project,
|
||||
@JvmField protected val coroutineScope: CoroutineScope,
|
||||
) : ProjectRootManagerEx(), PersistentStateComponent<Element> {
|
||||
private val projectJdkEventDispatcher = EventDispatcher.create(ProjectJdkListener::class.java)
|
||||
private var projectSdkName: String? = null
|
||||
private var projectSdkType: String? = null
|
||||
|
||||
Reference in New Issue
Block a user