You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/12/26 13:41:50 UTC

[commons-codec] branch master updated: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


The following commit(s) were added to refs/heads/master by this push:
     new 0ec741f  Javadoc.
0ec741f is described below

commit 0ec741ff0b60221c47f047d5ca6266d00fc3050c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 26 08:41:46 2019 -0500

    Javadoc.
---
 .../org/apache/commons/codec/binary/BaseNCodecOutputStream.java   | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java b/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java
index bad975c..b04f6f4 100644
--- a/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java
+++ b/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java
@@ -47,7 +47,13 @@ public class BaseNCodecOutputStream extends FilterOutputStream {
 
     private final Context context = new Context();
 
-    // TODO should this be protected?
+    /**
+     * TODO should this be protected?
+     * 
+     * @param out the underlying output or null.
+     * @param basedCodec a BaseNCodec.
+     * @param doEncode true to encode, false to decode, TODO should be an enum?
+     */
     public BaseNCodecOutputStream(final OutputStream out, final BaseNCodec basedCodec, final boolean doEncode) {
         super(out);
         this.baseNCodec = basedCodec;