[
https://issues.apache.org/jira/browse/IO-865?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gary D. Gregory updated IO-865:
-------------------------------
Fix Version/s: 3.0
> ThrottledInputStream.Builder does not return builder instance for
> setMaxBytesPerSecond()
> ----------------------------------------------------------------------------------------
>
> Key: IO-865
> URL: https://issues.apache.org/jira/browse/IO-865
> Project: Commons IO
> Issue Type: Bug
> Components: Utilities
> Affects Versions: 2.18.0
> Reporter: Nico Strecker
> Priority: Minor
> Fix For: 3.0
>
>
> The ThrottledInputStream documentation contains the following example:
> {code:java}
> ThrottledInputStream in = ThrottledInputStream.builder()
> .setInputStream(inputStream)
> .setMaxBytesPerSecond(100_000)
> .get();{code}
> This example does not work because setMaxBytesPerSecond does not return the
> builder instance but void:
> {code:java}
> public void setMaxBytesPerSecond(final long maxBytesPerSecond) {
> this.maxBytesPerSecond = maxBytesPerSecond;
> } {code}
> Either we correct the documentation or we return the builder instance, which
> I would prefer.
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)