File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ internal class RealSink(
148
148
if (thrown != null ) throw thrown
149
149
}
150
150
151
- override fun toString () = " buffer ($sink )"
151
+ override fun toString () = " buffered ($sink )"
152
152
153
153
@Suppress(" NOTHING_TO_INLINE" )
154
154
private inline fun checkNotClosed () {
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ internal class RealSource(
152
152
bufferField.clear()
153
153
}
154
154
155
- override fun toString (): String = " buffer ($source )"
155
+ override fun toString (): String = " buffered ($source )"
156
156
157
157
@Suppress(" NOTHING_TO_INLINE" )
158
158
private inline fun checkNotClosed () {
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public fun Sink.asOutputStream(): OutputStream {
82
82
83
83
override fun close () = this @asOutputStream.close()
84
84
85
- override fun toString () = " ${this @asOutputStream} .outputStream ()"
85
+ override fun toString () = " ${this @asOutputStream} .asOutputStream ()"
86
86
}
87
87
}
88
88
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ public fun Source.asInputStream(): InputStream {
126
126
127
127
override fun close () = this @asInputStream.close()
128
128
129
- override fun toString () = " ${this @asInputStream} .inputStream ()"
129
+ override fun toString () = " ${this @asInputStream} .asInputStream ()"
130
130
}
131
131
}
132
132
You can’t perform that action at this time.
0 commit comments