Replace deprecated join with joinToString
This commit is contained in:
+1
-1
@@ -58,7 +58,7 @@ public object RawTypeCapabilities : TypeCapabilities {
|
||||
|
||||
if (!upperArgs.isNotEmpty()) return null
|
||||
|
||||
val newArgs = lowerArgs.map { "(raw) $it" }.join(", ")
|
||||
val newArgs = lowerArgs.map { "(raw) $it" }.joinToString(", ")
|
||||
val newUpper =
|
||||
if (lowerArgs.zip(upperArgs).all { onlyOutDiffers(it.first, it.second) })
|
||||
upperRendered.replaceArgs(newArgs)
|
||||
|
||||
Reference in New Issue
Block a user