Skip to content

Commit

Permalink
Made SubImageOutputStream class final + fixed doc
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldk committed Aug 6, 2024
1 parent dd174c7 commit 9e98968
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
import static com.twelvemonkeys.lang.Validate.notNull;

/**
* ImageInputStream that writes through a delegate, but keeps local position and bit offset.
* ImageOutputStream that writes through a delegate, but keeps local position and bit offset.
* Note: Flushing or closing this stream will *not* have an effect on the delegate.
*
* @author <a href="mailto:[email protected]">Harald Kuhr</a>
* @author last modified by $Author: harald.kuhr$
* @version $Id: SubImageOutputStream.java,v 1.0 30/03/15 harald.kuhr Exp$
*/
public class SubImageOutputStream extends ImageOutputStreamImpl {
public final class SubImageOutputStream extends ImageOutputStreamImpl {
private final ImageOutputStream stream;
private final long startPos;

Expand Down

0 comments on commit 9e98968

Please sign in to comment.