You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2018/02/03 17:13:11 UTC

commons-compress git commit: mention the Block class is considered internal.

Repository: commons-compress
Updated Branches:
  refs/heads/master 2e44bbeb2 -> ecaa767cf


mention the Block class is considered internal.


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

Branch: refs/heads/master
Commit: ecaa767cf9494abbff8f8bcd283ae22f62b21c43
Parents: 2e44bbe
Author: Stefan Bodewig <bo...@apache.org>
Authored: Sat Feb 3 18:12:45 2018 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Sat Feb 3 18:12:45 2018 +0100

----------------------------------------------------------------------
 .../compress/compressors/lz77support/LZ77Compressor.java    | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/ecaa767c/src/main/java/org/apache/commons/compress/compressors/lz77support/LZ77Compressor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/compressors/lz77support/LZ77Compressor.java b/src/main/java/org/apache/commons/compress/compressors/lz77support/LZ77Compressor.java
index 4e494f3..27fec8d 100644
--- a/src/main/java/org/apache/commons/compress/compressors/lz77support/LZ77Compressor.java
+++ b/src/main/java/org/apache/commons/compress/compressors/lz77support/LZ77Compressor.java
@@ -84,7 +84,14 @@ import java.util.Arrays;
  */
 public class LZ77Compressor {
 
-    /** Base class representing blocks the compressor may emit. */
+    /**
+     * Base class representing blocks the compressor may emit.
+     *
+     * <p>This class is not supposed to be subclassed by classes
+     * outside of Commons Compress so it is considered internal and
+     * changed that would break subclasses may get introduced with
+     * future releases.</p>
+     */
     public static abstract class Block {
         /** Enumeration of the block types the compressor may emit. */
         public enum BlockType {