1 18 package org.apache.tools.ant.taskdefs; 19 20 import org.apache.tools.ant.Task; 21 import org.apache.tools.ant.BuildException; 22 import org.apache.tools.ant.Diagnostics; 23 24 25 29 public class DiagnosticsTask extends Task { 30 31 private static final String [] ARGS = new String [0]; 32 33 38 public void execute() throws BuildException { 39 Diagnostics.main(ARGS); 40 } 41 42 43 } 44 | Popular Tags |