You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by mb...@apache.org on 2008/06/26 01:34:33 UTC

svn commit: r671689 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/TempFile.java

Author: mbenson
Date: Wed Jun 25 16:34:33 2008
New Revision: 671689

URL: http://svn.apache.org/viewvc?rev=671689&view=rev
Log:
ws

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/TempFile.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/TempFile.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/TempFile.java?rev=671689&r1=671688&r2=671689&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/TempFile.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/TempFile.java Wed Jun 25 16:34:33 2008
@@ -23,8 +23,8 @@
 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.
  * <p>
@@ -35,8 +35,8 @@
  * create a temporary file with the .xml suffix.
  * <pre>&lt;tempfile property="temp.file" destDir="build"/&gt;</pre>
  * 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 @@
     /**
      * 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) {