Fix warnings in stdlib/compiler/plugins/test code

This commit is contained in:
Alexander Udalov
2020-11-26 21:25:01 +01:00
parent b3d85e656e
commit 221f44da5f
48 changed files with 109 additions and 101 deletions
@@ -44,7 +44,7 @@ object TargetPlatformParser {
return runIf(platformString == JS) { JsPlatforms.DefaultSimpleJsPlatform }
}
private fun tryParseNativePlatform(platformString: String): NativePlatform? {
private fun tryParseNativePlatform(@Suppress("UNUSED_PARAMETER") platformString: String): NativePlatform? {
// TODO: support native platforms
return null
}