Browse Source

add some comment about some type parameter

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1032923 13f79535-47bb-0310-9956-ffa450edef68
master
Nicolas Lalevee 14 years ago
parent
commit
51fe5cb2d9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/Target.java

+ 2
- 2
src/main/org/apache/tools/ant/Target.java View File

@@ -46,7 +46,7 @@ public class Target implements TaskContainer {
private String unlessCondition = "";

/** List of targets this target is dependent on. */
private List dependencies = null;
private List/*<String>*/ dependencies = null;

/** Children of this target (tasks and data types). */
private List children = new ArrayList();
@@ -245,7 +245,7 @@ public class Target implements TaskContainer {
/**
* Returns an enumeration of the dependencies of this target.
*
* @return an enumeration of the dependencies of this target
* @return an enumeration of the dependencies of this target (enumeration of String)
*/
public Enumeration getDependencies() {
return Collections


Loading…
Cancel
Save