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 2023/03/21 17:40:26 UTC

[commons-imaging] branch master updated: Remove dead comments

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-imaging.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d7622b0 Remove dead comments
8d7622b0 is described below

commit 8d7622b0559ad2dd376e73a012e586f9d60f3044
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Mar 21 13:40:23 2023 -0400

    Remove dead comments
---
 .../apache/commons/imaging/common/BinaryOutputStream.java | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/src/main/java/org/apache/commons/imaging/common/BinaryOutputStream.java b/src/main/java/org/apache/commons/imaging/common/BinaryOutputStream.java
index 2a3d10c6..107b1b4e 100644
--- a/src/main/java/org/apache/commons/imaging/common/BinaryOutputStream.java
+++ b/src/main/java/org/apache/commons/imaging/common/BinaryOutputStream.java
@@ -52,21 +52,6 @@ public abstract class BinaryOutputStream extends FilterOutputStream {
         super(outputStream);
     }
 
-//    @Override
-//    public final void write(final byte[] bytes) throws IOException {
-//        super.write(bytes, 0, bytes.length);
-//    }
-//
-//    @Override
-//    public final void write(final byte[] bytes, final int offset, final int length) throws IOException {
-//        super.write(bytes, offset, length);
-//    }
-//
-//    @Override
-//    public void write(final int i) throws IOException {
-//        super.write(i);
-//    }
-//
     public abstract void write2Bytes(int value) throws IOException;
 
     public abstract void write3Bytes(int value) throws IOException;