From a89f19ddbd7b7eb51f27656b55b0a1c10f69c5d1 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Wed, 25 Jun 2008 23:34:33 +0000 Subject: [PATCH] ws git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@671689 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/TempFile.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/TempFile.java b/src/main/org/apache/tools/ant/taskdefs/TempFile.java index f768361ca..511fc7c68 100644 --- a/src/main/org/apache/tools/ant/taskdefs/TempFile.java +++ b/src/main/org/apache/tools/ant/taskdefs/TempFile.java @@ -23,8 +23,8 @@ import org.apache.tools.ant.Task; import org.apache.tools.ant.util.FileUtils; /** - * This task sets a property to the name of a temporary file. - * Unlike {@link File#createTempFile}, this task does not actually create the + * This task sets a property to the name of a temporary file. + * Unlike {@link File#createTempFile}, this task does not (by default) actually create the * temporary file, but it does guarantee that the file did not * exist when the task was executed. *

@@ -35,8 +35,8 @@ import org.apache.tools.ant.util.FileUtils; * create a temporary file with the .xml suffix. *

<tempfile property="temp.file" destDir="build"/>
* create a temp file in the build subdir - *@since Ant 1.5 - *@ant.task + * @since Ant 1.5 + * @ant.task */ public class TempFile extends Task { @@ -146,7 +146,7 @@ public class TempFile extends Task { /** * Creates the temporary file. * - *@exception BuildException if something goes wrong with the build + * @exception BuildException if something goes wrong with the build */ public void execute() throws BuildException { if (property == null || property.length() == 0) {