[IR] Refactor IrActualizerUtils to use buildString

This commit is contained in:
Kirill Rakhman
2023-03-30 16:21:58 +02:00
committed by Space Team
parent 4dfef6ba6f
commit 6e7b078873
@@ -106,7 +106,7 @@ fun generateIrElementFullNameFromExpect(
declaration: IrElement,
expectActualTypeAliasMap: Map<FqName, FqName>
): String {
return StringBuilder().apply { appendElementFullName(declaration, this, expectActualTypeAliasMap) }.toString()
return buildString { appendElementFullName(declaration, this, expectActualTypeAliasMap) }
}
private fun appendElementFullName(