Browse Source

Checkstyle fixes

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272176 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 23 years ago
parent
commit
a64cb53667
3 changed files with 6 additions and 2 deletions
  1. +0
    -1
      proposal/mutant/src/java/antcore/org/apache/ant/antcore/execution/ExecutionContext.java
  2. +6
    -0
      proposal/mutant/src/java/bootstrap/org/apache/ant/builder/Builder.java
  3. +0
    -1
      proposal/mutant/src/java/common/org/apache/ant/common/antlib/AntContext.java

+ 0
- 1
proposal/mutant/src/java/antcore/org/apache/ant/antcore/execution/ExecutionContext.java View File

@@ -52,7 +52,6 @@
* <http://www.apache.org/>. * <http://www.apache.org/>.
*/ */
package org.apache.ant.antcore.execution; package org.apache.ant.antcore.execution;
import java.io.File;
import org.apache.ant.common.antlib.AntContext; import org.apache.ant.common.antlib.AntContext;
import org.apache.ant.common.antlib.ExecutionComponent; import org.apache.ant.common.antlib.ExecutionComponent;
import org.apache.ant.common.util.ExecutionException; import org.apache.ant.common.util.ExecutionException;


+ 6
- 0
proposal/mutant/src/java/bootstrap/org/apache/ant/builder/Builder.java View File

@@ -103,6 +103,12 @@ public class Builder {
builder.runBuild(args); builder.runBuild(args);
} }


/**
* Add all the java files fro, a given directory.
*
* @param files the list to which the files are to be added.
* @param dir the directory from which the Java files are added.
*/
private void addJavaFiles(List files, File dir) { private void addJavaFiles(List files, File dir) {
File[] javaFiles = dir.listFiles(new FilenameFilter() { File[] javaFiles = dir.listFiles(new FilenameFilter() {
public boolean accept(File dir, String name) { public boolean accept(File dir, String name) {


+ 0
- 1
proposal/mutant/src/java/common/org/apache/ant/common/antlib/AntContext.java View File

@@ -52,7 +52,6 @@
* <http://www.apache.org/>. * <http://www.apache.org/>.
*/ */
package org.apache.ant.common.antlib; package org.apache.ant.common.antlib;
import java.io.File;
import org.apache.ant.common.util.ExecutionException; import org.apache.ant.common.util.ExecutionException;
import org.apache.ant.common.util.Location; import org.apache.ant.common.util.Location;




Loading…
Cancel
Save