summaryrefslogtreecommitdiff
path: root/dev-java/okio/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2021-12-22 14:08:05 +0000
committerV3n3RiX <venerix@koprulu.sector>2021-12-22 14:08:05 +0000
commit93a93e9a3b53c1a73142a305ea1f8136846942ee (patch)
treeb9791a06ab3284e27b568412c59316c66240c682 /dev-java/okio/files
parent2771f79232c273bc2a57d23bf335dd81ccf6af28 (diff)
gentoo resync : 22.12.2021
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));