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 2017/05/02 19:24:31 UTC

commons-compress git commit: [COMPRESS-392] Add Brotli decoder based on the Google Brotli library. Add missing '@Override' annotations

Repository: commons-compress
Updated Branches:
  refs/heads/master 22fe7f3c8 -> 3856d3f0a


[COMPRESS-392] Add Brotli decoder based on the Google Brotli library.
Add missing '@Override' annotations

Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/3856d3f0
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/3856d3f0
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/3856d3f0

Branch: refs/heads/master
Commit: 3856d3f0a0826be3ccc6b160e740d5c7176df743
Parents: 22fe7f3
Author: Gary Gregory <ga...@gmail.com>
Authored: Tue May 2 12:24:29 2017 -0700
Committer: Gary Gregory <ga...@gmail.com>
Committed: Tue May 2 12:24:29 2017 -0700

----------------------------------------------------------------------
 .../compressors/brotli/BrotliCompressorInputStream.java     | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/3856d3f0/src/main/java/org/apache/commons/compress/compressors/brotli/BrotliCompressorInputStream.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/compressors/brotli/BrotliCompressorInputStream.java b/src/main/java/org/apache/commons/compress/compressors/brotli/BrotliCompressorInputStream.java
index 26b56d9..e7fa0f3 100644
--- a/src/main/java/org/apache/commons/compress/compressors/brotli/BrotliCompressorInputStream.java
+++ b/src/main/java/org/apache/commons/compress/compressors/brotli/BrotliCompressorInputStream.java
@@ -42,6 +42,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @throws IOException
      * @see java.io.InputStream#available()
      */
+    @Override
     public int available() throws IOException {
         return decIS.available();
     }
@@ -50,6 +51,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @throws IOException
      * @see org.brotli.dec.BrotliInputStream#close()
      */
+    @Override
     public void close() throws IOException {
         decIS.close();
     }
@@ -58,6 +60,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @return
      * @see java.lang.Object#hashCode()
      */
+    @Override
     public int hashCode() {
         return decIS.hashCode();
     }
@@ -73,6 +76,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @return
      * @see java.lang.Object#equals(java.lang.Object)
      */
+    @Override
     public boolean equals(Object obj) {
         return decIS.equals(obj);
     }
@@ -83,6 +87,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @throws IOException
      * @see java.io.InputStream#skip(long)
      */
+    @Override
     public long skip(long n) throws IOException {
         return decIS.skip(n);
     }
@@ -91,6 +96,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @param readlimit
      * @see java.io.InputStream#mark(int)
      */
+    @Override
     public void mark(int readlimit) {
         decIS.mark(readlimit);
     }
@@ -99,6 +105,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @return
      * @see java.io.InputStream#markSupported()
      */
+    @Override
     public boolean markSupported() {
         return decIS.markSupported();
     }
@@ -123,6 +130,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @return
      * @see java.lang.Object#toString()
      */
+    @Override
     public String toString() {
         return decIS.toString();
     }
@@ -131,6 +139,7 @@ public class BrotliCompressorInputStream extends CompressorInputStream {
      * @throws IOException
      * @see java.io.InputStream#reset()
      */
+    @Override
     public void reset() throws IOException {
         decIS.reset();
     }