Github user cgrushko commented on the issue:
https://github.com/apache/commons-compress/pull/68
@bodewig the ctors I'm calling don't have javadoc either, so I don't know
what the parameters mean. I can add `@param level The compression level` on
those that have a level, but I don't think it'll be helpful.
I can also add something along the lines of `Constructs a stream using
ZstdOutputStream's ctor with the same prototype`, but that seems meh as well.
The class's purpose is to bridge two interfaces, it doesn't add anything on
its own, so it's hard to document it beyond "go look at the other class we're
delegating to".
(the original code didn't have any comments at all, for this reason, in my
opinion)
If you have a specific javadoc in mind I'm happy to add it.
---