mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-26 00:52:07 +01:00
Mark ProxyOutputStream as deprecated
This commit is contained in:
parent
e39cc7f0ac
commit
a13f1e2a0d
1 changed files with 1 additions and 0 deletions
|
@ -15,6 +15,7 @@ import java.io.OutputStream
|
||||||
* class is useful if we need to provide an [OutputStream] at one point in time when the final
|
* class is useful if we need to provide an [OutputStream] at one point in time when the final
|
||||||
* target output stream is not yet known.
|
* target output stream is not yet known.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated("Marked for removal.")
|
||||||
class ProxyOutputStream : OutputStream() {
|
class ProxyOutputStream : OutputStream() {
|
||||||
private val buffer = ByteArrayOutputStream()
|
private val buffer = ByteArrayOutputStream()
|
||||||
private var swapped: OutputStream? = null
|
private var swapped: OutputStream? = null
|
||||||
|
|
Loading…
Reference in a new issue