[Gradle][Minor] IdeaKotlinClasspath: Improve .toString() readability

KT-56198
This commit is contained in:
Sebastian Sellmair
2023-01-25 18:38:40 +01:00
committed by Space Team
parent 2bda0c0c57
commit 6fae581ffb
2 changed files with 5 additions and 0 deletions
@@ -352,6 +352,7 @@ public final class org/jetbrains/kotlin/gradle/idea/tcs/IdeaKotlinClasspath : ja
public final fun size ()I
public fun toArray ()[Ljava/lang/Object;
public fun toArray ([Ljava/lang/Object;)[Ljava/lang/Object;
public fun toString ()Ljava/lang/String;
}
public final class org/jetbrains/kotlin/gradle/idea/tcs/IdeaKotlinClasspathKt {
@@ -73,6 +73,10 @@ class IdeaKotlinClasspath private constructor(private val files: MutableSet<File
return files.hashCode()
}
override fun toString(): String {
return "IdeaKotlinClasspath($files)"
}
internal companion object {
private const val serialVersionUID = 0L