Remove unused modification tracker in KotlinClassInnerStuffCache

'dropCaches()' is not used anywhere both in the compiler and in the IDE.
This commit is contained in:
Yan Zhulanow
2022-03-03 17:14:28 +09:00
parent f237631f05
commit 955d0841bd
5 changed files with 5 additions and 13 deletions
@@ -66,7 +66,7 @@ abstract class FirLightClassBase protected constructor(manager: PsiManager) : Li
private val myInnersCache = KotlinClassInnerStuffCache(
myClass = this@FirLightClassBase,
externalDependencies = listOf(manager.project.createProjectWideOutOfBlockModificationTracker()),
dependencies = listOf(manager.project.createProjectWideOutOfBlockModificationTracker()),
lazyCreator = FirLightClassesLazyCreator(project)
)