Browse Source

organize imports; ws; sp

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@549256 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 18 years ago
parent
commit
2091b2c9a5
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      src/main/org/apache/tools/ant/taskdefs/DiagnosticsTask.java

+ 2
- 4
src/main/org/apache/tools/ant/taskdefs/DiagnosticsTask.java View File

@@ -17,10 +17,9 @@
*/ */
package org.apache.tools.ant.taskdefs; package org.apache.tools.ant.taskdefs;


import org.apache.tools.ant.Task;
import org.apache.tools.ant.BuildException; import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Diagnostics; import org.apache.tools.ant.Diagnostics;
import org.apache.tools.ant.Task;


/** /**
* This is a task that hands off work to the Diagnostics module. * This is a task that hands off work to the Diagnostics module.
@@ -32,12 +31,11 @@ public class DiagnosticsTask extends Task {


/** /**
* Execute the task. * Execute the task.
* This delgates to the Diagnositics class.
* This delegates to the Diagnostics class.
* @throws BuildException on error. * @throws BuildException on error.
*/ */
public void execute() throws BuildException { public void execute() throws BuildException {
Diagnostics.main(ARGS); Diagnostics.main(ARGS);
} }



} }

Loading…
Cancel
Save