summaryrefslogtreecommitdiff
path: root/dev-java/okio/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-java/okio/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-java/okio/files')
-rw-r--r--dev-java/okio/files/okio-remove-maven-animal-jre.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-java/okio/files/okio-remove-maven-animal-jre.patch b/dev-java/okio/files/okio-remove-maven-animal-jre.patch
deleted file mode 100644
index 0e5e5d62880e..000000000000
--- a/dev-java/okio/files/okio-remove-maven-animal-jre.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- okio/src/main/java/okio/DeflaterSink.java 2016-08-22 12:01:19.828823222 -0500
-+++ okio/src/main/java/okio/DeflaterSink.java 2016-08-22 12:01:25.039823574 -0500
-@@ -17,7 +17,6 @@
-
- import java.io.IOException;
- import java.util.zip.Deflater;
--import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement;
-
- import static okio.Util.checkOffsetAndCount;
-
-@@ -79,7 +78,6 @@
- }
- }
-
-- @IgnoreJRERequirement
- private void deflate(boolean syncFlush) throws IOException {
- Buffer buffer = sink.buffer();
- while (true) {
---- okio/src/main/java/okio/Okio.java 2016-08-22 12:03:23.819831591 -0500
-+++ okio/src/main/java/okio/Okio.java 2016-08-22 12:03:34.874832337 -0500
-@@ -30,7 +30,6 @@
- import java.nio.file.Path;
- import java.util.logging.Level;
- import java.util.logging.Logger;
--import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement;
-
- import static okio.Util.checkOffsetAndCount;
-
-@@ -167,7 +166,6 @@
- }
-
- /** Returns a source that reads from {@code path}. */
-- @IgnoreJRERequirement // Should only be invoked on Java 7+.
- public static Source source(Path path, OpenOption... options) throws IOException {
- if (path == null) throw new IllegalArgumentException("path == null");
- return source(Files.newInputStream(path, options));
-@@ -186,7 +184,6 @@
- }
-
- /** Returns a sink that writes to {@code path}. */
-- @IgnoreJRERequirement // Should only be invoked on Java 7+.
- public static Sink sink(Path path, OpenOption... options) throws IOException {
- if (path == null) throw new IllegalArgumentException("path == null");
- return sink(Files.newOutputStream(path, options));