From 58b16abe8b01ea9ba5831447203664d8f4700deb Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Fri, 28 Jan 2005 09:26:07 +0000 Subject: [PATCH] get reference ready for 1.6.3 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277531 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/Reference.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/Reference.java b/src/main/org/apache/tools/ant/types/Reference.java index 62d65ff44..81f8161d5 100644 --- a/src/main/org/apache/tools/ant/types/Reference.java +++ b/src/main/org/apache/tools/ant/types/Reference.java @@ -49,7 +49,7 @@ public class Reference { * Create a reference to a named ID in a particular project. * @param p the project this reference is associated with * @param id the name of this reference - * @since Ant 1.7 + * @since Ant 1.6.3 */ public Reference(Project p, String id) { setRefId(id); @@ -77,7 +77,7 @@ public class Reference { * Set the associated project. Should not normally be necessary; * use {@link Reference#Reference(Project,String)}. * @param p the project to use - * @since Ant 1.7 + * @since Ant 1.6.3 */ public void setProject(Project p) { this.project = p; @@ -86,7 +86,7 @@ public class Reference { /** * Get the associated project, if any; may be null. * @return the associated project - * @since Ant 1.7 + * @since Ant 1.6.3 */ public Project getProject() { return project; @@ -117,7 +117,7 @@ public class Reference { * @see Project#getReference * @return the dereferenced object. * @throws BuildException if the project is null or the reference cannot be dereferenced - * @since Ant 1.7 + * @since Ant 1.6.3 */ public Object getReferencedObject() throws BuildException { if (project == null) {