You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by mb...@apache.org on 2007/06/20 23:45:31 UTC

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

Author: mbenson
Date: Wed Jun 20 14:45:30 2007
New Revision: 549256

URL: http://svn.apache.org/viewvc?view=rev&rev=549256
Log:
organize imports; ws; sp

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

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/DiagnosticsTask.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/DiagnosticsTask.java?view=diff&rev=549256&r1=549255&r2=549256
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/DiagnosticsTask.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/DiagnosticsTask.java Wed Jun 20 14:45:30 2007
@@ -17,10 +17,9 @@
  */
 package org.apache.tools.ant.taskdefs;
 
-import org.apache.tools.ant.Task;
 import org.apache.tools.ant.BuildException;
 import org.apache.tools.ant.Diagnostics;
-
+import org.apache.tools.ant.Task;
 
 /**
  * This is a task that hands off work to the Diagnostics module.
@@ -32,12 +31,11 @@
 
     /**
      * Execute the task.
-     * This delgates to the Diagnositics class.
+     * This delegates to the Diagnostics class.
      * @throws BuildException on error.
      */
     public void execute() throws BuildException {
         Diagnostics.main(ARGS);
     }
-
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org