diff options
| author | Gintas Grigelionis <gintas@apache.org> | 2017-12-01 21:18:02 +0100 |
|---|---|---|
| committer | Gintas Grigelionis <gintas@apache.org> | 2017-12-01 21:18:02 +0100 |
| commit | 866ce9f550d2c7d3fa44319f8acbfb75a3ad3c42 (patch) | |
| tree | f82a279d71254e6ea133ef67a2df4e8a203239ba /src/etc/testcases/core | |
| parent | fc2bce5326d8c3e0958e92531f3e58f58ad7a531 (diff) | |
| download | ant-866ce9f550d2c7d3fa44319f8acbfb75a3ad3c42.tar.gz | |
Checkstyle: mostly whitespace
Diffstat (limited to 'src/etc/testcases/core')
| -rw-r--r-- | src/etc/testcases/core/containersrc/test/SpecialSeq.java | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/etc/testcases/core/containersrc/test/SpecialSeq.java b/src/etc/testcases/core/containersrc/test/SpecialSeq.java index ae6a3dd93..f3f017601 100644 --- a/src/etc/testcases/core/containersrc/test/SpecialSeq.java +++ b/src/etc/testcases/core/containersrc/test/SpecialSeq.java @@ -1,4 +1,4 @@ -/* +/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. @@ -13,7 +13,7 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * + * */ package test; @@ -22,21 +22,22 @@ import org.apache.tools.ant.TaskContainer; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.types.FileSet; import org.apache.tools.ant.taskdefs.Echo; -import java.util.*; + +import java.util.Enumeration; +import java.util.Vector; public class SpecialSeq extends Task implements TaskContainer { /** Optional Vector holding the nested tasks */ private Vector nestedTasks = new Vector(); private FileSet fileset; - + private Echo nestedEcho; - + /** * Add a nested task. - * <p> + * * @param nestedTask Nested task to execute - * <p> */ public void addTask(Task nestedTask) { nestedTasks.addElement(nestedTask); @@ -60,7 +61,7 @@ public class SpecialSeq extends Task implements TaskContainer { public void addFileset(FileSet fileset) { this.fileset = fileset; } - + public void addNested(Echo nestedEcho) { this.nestedEcho = nestedEcho; } |
