-
Notifications
You must be signed in to change notification settings - Fork 49
Avoid FileInputStream, FileOutputStream, FileReader and FileWriter #183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
135f3c3
to
263fbc8
Compare
well the issue has been fixed in the jdk in 2017. So I don't understand why is it still a problem? |
The issue has been fixed in jdk 10, there are a lot of jdk 8 projects out there, also this aligns with codehaus-plexus/plexus-utils#111 using NIO to allow better offloading / performance. |
Can the JBS issue be provided? |
Where should I open it? |
You said: The issue has been fixed in jdk 10, So there must be already JBS issue for that. |
Ok, sorry for the misunderstanding, the JBS is https://bugs.openjdk.java.net/browse/JDK-8080225 |
Thanks, then this PR makes sense. @olamy WDYT? |
src/main/java/org/codehaus/plexus/archiver/bzip2/PlexusIoBzip2ResourceCollection.java
Show resolved
Hide resolved
src/main/java/org/codehaus/plexus/archiver/gzip/PlexusIoGzipResourceCollection.java
Show resolved
Hide resolved
src/main/java/org/codehaus/plexus/archiver/resources/PlexusIoVirtualFileResource.java
Outdated
Show resolved
Hide resolved
src/main/java/org/codehaus/plexus/archiver/xz/PlexusIoXZResourceCollection.java
Show resolved
Hide resolved
src/main/java/org/codehaus/plexus/archiver/zip/AnonymousResource.java
Outdated
Show resolved
Hide resolved
@michael-o yup makes sense. I only have minor comments. But OMG what a bad name has been used for a class called |
263fbc8
to
fcc1776
Compare
Fixes #182