From fae3a853d38a0736f2cd0e2438288fa9230b0ba5 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Wed, 17 Sep 2003 14:23:27 +0000 Subject: [PATCH] add back removed description + checkstyle javadoc git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275251 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/Target.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/Target.java b/src/main/org/apache/tools/ant/Target.java index a729a1a28..35ae361f0 100644 --- a/src/main/org/apache/tools/ant/Target.java +++ b/src/main/org/apache/tools/ant/Target.java @@ -84,6 +84,7 @@ public class Target implements TaskContainer { /** Project this target belongs to. */ private Project project; + /** Description of this target, if any. */ private String description = null; /** Sole constructor. */ @@ -231,7 +232,7 @@ public class Target implements TaskContainer { /** * Does this target depend on the named target? - * + * @return true if the target does depend on the named target * @since Ant 1.6 */ public boolean dependsOn(String other) {