From 51fe5cb2d9c5c0aae9a528b1af992bcf1d407b1a Mon Sep 17 00:00:00 2001 From: Nicolas Lalevee Date: Tue, 9 Nov 2010 11:12:18 +0000 Subject: [PATCH] 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 --- src/main/org/apache/tools/ant/Target.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/Target.java b/src/main/org/apache/tools/ant/Target.java index 28ac04aea..7fb1abf7d 100644 --- a/src/main/org/apache/tools/ant/Target.java +++ b/src/main/org/apache/tools/ant/Target.java @@ -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/**/ 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