[Gradle][Minor] IdeaKotlinClasspath: Improve .toString() readability
KT-56198
This commit is contained in:
committed by
Space Team
parent
2bda0c0c57
commit
6fae581ffb
@@ -352,6 +352,7 @@ public final class org/jetbrains/kotlin/gradle/idea/tcs/IdeaKotlinClasspath : ja
|
|||||||
public final fun size ()I
|
public final fun size ()I
|
||||||
public fun toArray ()[Ljava/lang/Object;
|
public fun toArray ()[Ljava/lang/Object;
|
||||||
public fun toArray ([Ljava/lang/Object;)[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 {
|
public final class org/jetbrains/kotlin/gradle/idea/tcs/IdeaKotlinClasspathKt {
|
||||||
|
|||||||
+4
@@ -73,6 +73,10 @@ class IdeaKotlinClasspath private constructor(private val files: MutableSet<File
|
|||||||
return files.hashCode()
|
return files.hashCode()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun toString(): String {
|
||||||
|
return "IdeaKotlinClasspath($files)"
|
||||||
|
}
|
||||||
|
|
||||||
internal companion object {
|
internal companion object {
|
||||||
private const val serialVersionUID = 0L
|
private const val serialVersionUID = 0L
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user