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
@@ -30,7 +30,7 @@ open class KtLightClassForDecompiledDeclaration(
private val myInnersCache = KotlinClassInnerStuffCache(
myClass = this,
externalDependencies = listOf(KotlinModificationTrackerService.getInstance(manager.project).outOfBlockModificationTracker),
dependencies = listOf(KotlinModificationTrackerService.getInstance(manager.project).outOfBlockModificationTracker),
lazyCreator = LightClassesLazyCreator(project)
)