You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/11 15:34:39 UTC

[camel] 09/11: (chores) camel-util: cleanup verbose overrides

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 <an...@gmail.com>
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);