mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-25 02:21:28 +01:00
checkstyle correction
Former-commit-id: 0bc46c51151eca7d8b6c0abff3b7b9a47cb0529f
This commit is contained in:
@@ -261,7 +261,7 @@ public class DownloadTask implements Callable<Future<ProcessTask>> {
|
|||||||
*/
|
*/
|
||||||
private void extractGzip(File file) throws FileNotFoundException, IOException {
|
private void extractGzip(File file) throws FileNotFoundException, IOException {
|
||||||
final String originalPath = file.getPath();
|
final String originalPath = file.getPath();
|
||||||
File gzip = new File(originalPath + ".gz");
|
final File gzip = new File(originalPath + ".gz");
|
||||||
if (gzip.isFile() && !gzip.delete()) {
|
if (gzip.isFile() && !gzip.delete()) {
|
||||||
gzip.deleteOnExit();
|
gzip.deleteOnExit();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user