From 875e8f90296d59d157b249e075fed80614b9bff2 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Thu, 6 Jan 2005 17:50:29 +0000 Subject: [PATCH] checkstyle git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277303 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Untar.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Untar.java b/src/main/org/apache/tools/ant/taskdefs/Untar.java index d2843e92a..059881e6c 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Untar.java +++ b/src/main/org/apache/tools/ant/taskdefs/Untar.java @@ -76,7 +76,8 @@ public class Untar extends Expand { /** * No encoding support in Untar. - * + * @param encoding not used + * @throws BuildException always * @since Ant 1.6 */ public void setEncoding(String encoding) { @@ -85,6 +86,9 @@ public class Untar extends Expand { + " attribute", getLocation()); } + /** + * @see Expand#expandFile(FileUtils, File, File) + */ protected void expandFile(FileUtils fileUtils, File srcF, File dir) { TarInputStream tis = null; try {