[SLC] drop redundant properties to reduce memory consumption

^KT-56613
This commit is contained in:
Dmitrii Gridin
2023-02-22 12:23:49 +01:00
committed by Space Team
parent 6ddf32d013
commit b565df65c4
5 changed files with 24 additions and 65 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
@@ -12,5 +12,5 @@ interface KtLightClassForFacade : KtLightClass {
val facadeClassFqName: FqName
val files: Collection<KtFile>
override fun getName() = facadeClassFqName.shortName().asString()
override fun getName(): String = facadeClassFqName.shortName().asString()
}