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 2017/07/05 15:34:28 UTC

[09/12] commons-compress git commit: Redoing more buffer stuff

Redoing more buffer stuff

Signed-off-by: Simon Spero <se...@gmail.com>

(cherry picked from commit 330c8b3)
Signed-off-by: Simon Spero <se...@gmail.com>


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

Branch: refs/heads/master
Commit: 11fcc89fec70aae7eeda710e2bd26d93cb3c05c6
Parents: a67bdc0
Author: Simon Spero <se...@gmail.com>
Authored: Thu Jun 15 14:27:48 2017 -0400
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Wed Jul 5 16:30:00 2017 +0200

----------------------------------------------------------------------
 .../commons/compress/internal/charset/HasCharset.java     | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/11fcc89f/src/main/java/org/apache/commons/compress/internal/charset/HasCharset.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/internal/charset/HasCharset.java b/src/main/java/org/apache/commons/compress/internal/charset/HasCharset.java
new file mode 100644
index 0000000..0406432
--- /dev/null
+++ b/src/main/java/org/apache/commons/compress/internal/charset/HasCharset.java
@@ -0,0 +1,10 @@
+package org.apache.commons.compress.internal.charset;
+
+import java.nio.charset.Charset;
+
+/**
+ * Interface to allow access to a character set associated with an object
+ */
+public interface HasCharset {
+  Charset getCharset();
+}