GitHub user DaGeRe opened a pull request:
https://github.com/apache/commons-compress/pull/70
Use Java 7 Files.createTempDirectory instead of creating file, deletiâ¦
â¦ng it and create directory
The self-written mkdir deletes a temporary file with a prefix, deletes it
and creates an directory with the same name. Creating a temporary file by
Files.createTempDirectory so is cleaner and faster.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/DaGeRe/commons-compress master
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/commons-compress/pull/70.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #70
----
commit bb6890f0fe9bc51a9e493d9ee9ab02a04a155ac5
Author: David Georg Reichelt <davidgeorg_reichelt@...>
Date: 2018-09-28T09:21:43Z
Use Java 7 Files.createTempDirectory instead of creating file, deleting it
and create directory
----
---