This is an automated email from the ASF dual-hosted git repository. mapohl pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 098dc7eca315370d2f53be3318461476f0efeac4 Author: Matthias Pohl <[email protected]> AuthorDate: Fri Apr 1 18:10:59 2022 +0200 [hotfix] Fixes error in JavaDoc --- .../java/org/apache/flink/runtime/util/ForwardingOutputStream.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/util/ForwardingOutputStream.java b/flink-runtime/src/main/java/org/apache/flink/runtime/util/ForwardingOutputStream.java index d2c4b396086..b2bbb7ef756 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/util/ForwardingOutputStream.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/util/ForwardingOutputStream.java @@ -25,8 +25,8 @@ import java.io.IOException; import java.io.OutputStream; /** - * Output stream, that wraps another input stream and forwards all method calls to the wrapped - * stream. + * {@code OutputStream}, that wraps another {@code OutputStream} and forwards all method calls to + * the wrapped stream. */ @Internal public class ForwardingOutputStream extends OutputStream {
