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 [EMAIL PROTECTED] File#createTempFile}, this task does not actually 
create the
+ *  This task sets a property to the name of a temporary file.
+ *  Unlike [EMAIL PROTECTED] 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
- [EMAIL PROTECTED]       Ant 1.5
- [EMAIL PROTECTED]
+ * @since       Ant 1.5
+ * @ant.task
  */
 
 public class TempFile extends Task {
@@ -146,7 +146,7 @@
     /**
      * Creates the temporary file.
      *
-     [EMAIL PROTECTED]  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) {


Reply via email to