Author: hibou
Date: Tue Nov 9 11:12:18 2010
New Revision: 1032923
URL: http://svn.apache.org/viewvc?rev=1032923&view=rev
Log:
add some comment about some type parameter
Modified:
ant/core/trunk/src/main/org/apache/tools/ant/Target.java
Modified: ant/core/trunk/src/main/org/apache/tools/ant/Target.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/Target.java?rev=1032923&r1=1032922&r2=1032923&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/Target.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/Target.java Tue Nov 9
11:12:18 2010
@@ -46,7 +46,7 @@ public class Target implements TaskConta
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 TaskConta
/**
* 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