[IR] Refactor IrActualizerUtils to use buildString
This commit is contained in:
committed by
Space Team
parent
4dfef6ba6f
commit
6e7b078873
+1
-1
@@ -106,7 +106,7 @@ fun generateIrElementFullNameFromExpect(
|
|||||||
declaration: IrElement,
|
declaration: IrElement,
|
||||||
expectActualTypeAliasMap: Map<FqName, FqName>
|
expectActualTypeAliasMap: Map<FqName, FqName>
|
||||||
): String {
|
): String {
|
||||||
return StringBuilder().apply { appendElementFullName(declaration, this, expectActualTypeAliasMap) }.toString()
|
return buildString { appendElementFullName(declaration, this, expectActualTypeAliasMap) }
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun appendElementFullName(
|
private fun appendElementFullName(
|
||||||
|
|||||||
Reference in New Issue
Block a user