From 7c6f6591f635626c1e3e8c47dfa1bff0af3ee370 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Thu, 2 Oct 2003 10:14:23 +0000 Subject: [PATCH] label description is not (no longer?) optional git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275408 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/OptionalTasks/starteam.html | 10 +++++----- .../ant/taskdefs/optional/starteam/StarTeamLabel.java | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/manual/OptionalTasks/starteam.html b/docs/manual/OptionalTasks/starteam.html index 91d5d513e..4158ae421 100644 --- a/docs/manual/OptionalTasks/starteam.html +++ b/docs/manual/OptionalTasks/starteam.html @@ -564,6 +564,11 @@ See also the required common StarTeam parameters.The name to be given to the label yes + + description + A description of the label to be stored in the StarTeam project. + yes + revisionlabel Yes means that the label attribute is to be saved as a "revision label". No (default) means that it will be saved as a "view label" @@ -583,11 +588,6 @@ See also the required common StarTeam parameters.The timestamp of the build that will be stored with the label. Must be formatted yyyyMMddHHmmss no - - description - A description of the label to be stored in the StarTeam project. - no -

Examples

diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamLabel.java b/src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamLabel.java index b78b6467d..3672569db 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamLabel.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamLabel.java @@ -123,7 +123,7 @@ public class StarTeamLabel extends StarTeamTask { } /** - * Optional description of the label to be stored in the StarTeam project. + * Description of the label to be stored in the StarTeam project. */ public void setDescription(String description) { this.description = description;