[mangling] Remove the unused fqnString method from KotlinMangler

This commit is contained in:
Sergej Jaskiewicz
2023-06-22 13:06:15 +02:00
committed by Space Team
parent 11c4fcda5f
commit f14a713e49
7 changed files with 0 additions and 22 deletions
@@ -17,11 +17,9 @@ interface KotlinMangler<D : Any> {
fun D.isExported(compatibleMode: Boolean): Boolean
fun D.mangleString(compatibleMode: Boolean): String
fun D.signatureString(compatibleMode: Boolean): String
fun D.fqnString(compatibleMode: Boolean): String
fun D.hashedMangle(compatibleMode: Boolean): Long = mangleString(compatibleMode).hashMangle
fun D.signatureMangle(compatibleMode: Boolean): Long = signatureString(compatibleMode).hashMangle
fun D.fqnMangle(compatibleMode: Boolean): Long = fqnString(compatibleMode).hashMangle
fun D.isPlatformSpecificExport(): Boolean = false