This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5e76f8b19d4a860167dcefd0446a7f66c53e67ad Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Tue Apr 11 14:53:03 2023 +0200 (chores) camel-util: cleanup verbose overrides --- .../src/main/java/org/apache/camel/util/SkipLastByteInputStream.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/camel-util/src/main/java/org/apache/camel/util/SkipLastByteInputStream.java b/core/camel-util/src/main/java/org/apache/camel/util/SkipLastByteInputStream.java index b219a3254cc..a4b0fc764cb 100644 --- a/core/camel-util/src/main/java/org/apache/camel/util/SkipLastByteInputStream.java +++ b/core/camel-util/src/main/java/org/apache/camel/util/SkipLastByteInputStream.java @@ -56,11 +56,6 @@ public class SkipLastByteInputStream extends BufferedInputStream { return c; } - @Override - public void close() throws IOException { - super.close(); - } - @Override public int read(byte[] buffer, int off, int len) throws IOException { final int count = super.read(buffer, off, len);
