checkstyle correction

Former-commit-id: 0bc46c51151eca7d8b6c0abff3b7b9a47cb0529f
This commit is contained in:
Jeremy Long
2014-12-27 06:52:37 -05:00
parent 62a3efa23a
commit e0217fc6c3

View File

@@ -261,7 +261,7 @@ public class DownloadTask implements Callable<Future<ProcessTask>> {
*/
private void extractGzip(File file) throws FileNotFoundException, IOException {
final String originalPath = file.getPath();
File gzip = new File(originalPath + ".gz");
final File gzip = new File(originalPath + ".gz");
if (gzip.isFile() && !gzip.delete()) {
gzip.deleteOnExit();
}