summaryrefslogtreecommitdiff
path: root/src/main/org/apache/tools/ant/taskdefs/GUnzip.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/org/apache/tools/ant/taskdefs/GUnzip.java')
-rw-r--r--src/main/org/apache/tools/ant/taskdefs/GUnzip.java20
1 files changed, 6 insertions, 14 deletions
diff --git a/src/main/org/apache/tools/ant/taskdefs/GUnzip.java b/src/main/org/apache/tools/ant/taskdefs/GUnzip.java
index 94f08d78b..d0fe4b067 100644
--- a/src/main/org/apache/tools/ant/taskdefs/GUnzip.java
+++ b/src/main/org/apache/tools/ant/taskdefs/GUnzip.java
@@ -19,13 +19,11 @@
package org.apache.tools.ant.taskdefs;
import java.io.IOException;
-import java.io.InputStream;
import java.io.OutputStream;
import java.nio.file.Files;
import java.util.zip.GZIPInputStream;
import org.apache.tools.ant.BuildException;
-import org.apache.tools.ant.util.FileUtils;
/**
* Expands a file that has been compressed with the GZIP
@@ -45,6 +43,7 @@ public class GUnzip extends Unpack {
* Get the default extension.
* @return the value ".gz"
*/
+ @Override
protected String getDefaultExtension() {
return DEFAULT_EXTENSION;
}
@@ -52,18 +51,14 @@ public class GUnzip extends Unpack {
/**
* Implement the gunzipping.
*/
+ @Override
protected void extract() {
if (srcResource.getLastModified() > dest.lastModified()) {
log("Expanding " + srcResource.getName() + " to "
+ dest.getAbsolutePath());
-
- OutputStream out = null;
- GZIPInputStream zIn = null;
- InputStream fis = null;
- try {
- out = Files.newOutputStream(dest.toPath());
- fis = srcResource.getInputStream();
- zIn = new GZIPInputStream(fis);
+ try (OutputStream out = Files.newOutputStream(dest.toPath());
+ GZIPInputStream zIn =
+ new GZIPInputStream(srcResource.getInputStream())) {
byte[] buffer = new byte[BUFFER_SIZE];
int count = 0;
do {
@@ -73,10 +68,6 @@ public class GUnzip extends Unpack {
} catch (IOException ioe) {
String msg = "Problem expanding gzip " + ioe.getMessage();
throw new BuildException(msg, ioe, getLocation());
- } finally {
- FileUtils.close(fis);
- FileUtils.close(out);
- FileUtils.close(zIn);
}
}
}
@@ -92,6 +83,7 @@ public class GUnzip extends Unpack {
* @return true if this task supports non file resources.
* @since Ant 1.7
*/
+ @Override
protected boolean supportsNonFileResources() {
return getClass().equals(GUnzip.class);
}