whitespace
Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/311138d0 Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/311138d0 Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/311138d0 Branch: refs/heads/master Commit: 311138d0aa08502d6bd1481c2488b4b9902874b5 Parents: 0906b0a Author: Stefan Bodewig <[email protected]> Authored: Tue Mar 29 11:03:02 2016 +0200 Committer: Stefan Bodewig <[email protected]> Committed: Tue Mar 29 11:03:02 2016 +0200 ---------------------------------------------------------------------- .../ant/taskdefs/optional/XMLValidateTask.java | 54 ++++++++++---------- 1 file changed, 26 insertions(+), 28 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/311138d0/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java ---------------------------------------------------------------------- diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java b/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java index 05c043d..26b49a2 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java @@ -287,42 +287,40 @@ public class XMLValidateTask extends Task { */ public void execute() throws BuildException { try { - int fileProcessed = 0; - if (file == null && (filesets.size() == 0)) { - throw new BuildException( - "Specify at least one source - " + "a file or a fileset."); - } - - + int fileProcessed = 0; + if (file == null && (filesets.size() == 0)) { + throw new BuildException( + "Specify at least one source - " + "a file or a fileset."); + } - if (file != null) { - if (file.exists() && file.canRead() && file.isFile()) { - doValidate(file); - fileProcessed++; - } else { - String errorMsg = "File " + file + " cannot be read"; - if (failOnError) { - throw new BuildException(errorMsg); + if (file != null) { + if (file.exists() && file.canRead() && file.isFile()) { + doValidate(file); + fileProcessed++; } else { - log(errorMsg, Project.MSG_ERR); + String errorMsg = "File " + file + " cannot be read"; + if (failOnError) { + throw new BuildException(errorMsg); + } else { + log(errorMsg, Project.MSG_ERR); + } } } - } - final int size = filesets.size(); - for (int i = 0; i < size; i++) { + final int size = filesets.size(); + for (int i = 0; i < size; i++) { - FileSet fs = (FileSet) filesets.elementAt(i); - DirectoryScanner ds = fs.getDirectoryScanner(getProject()); - String[] files = ds.getIncludedFiles(); + FileSet fs = (FileSet) filesets.elementAt(i); + DirectoryScanner ds = fs.getDirectoryScanner(getProject()); + String[] files = ds.getIncludedFiles(); - for (int j = 0; j < files.length; j++) { - File srcFile = new File(fs.getDir(getProject()), files[j]); - doValidate(srcFile); - fileProcessed++; + for (int j = 0; j < files.length; j++) { + File srcFile = new File(fs.getDir(getProject()), files[j]); + doValidate(srcFile); + fileProcessed++; + } } - } - onSuccessfulValidation(fileProcessed); + onSuccessfulValidation(fileProcessed); } finally { cleanup(); }
