mbenson 2005/01/27 08:43:09
Modified: src/main/org/apache/tools/ant
UnsupportedAttributeException.java
UnsupportedElementException.java
Log:
I said I was synching 1.6 with HEAD, forgot to update HEAD first!
Revision Changes Path
1.3 +7 -7
ant/src/main/org/apache/tools/ant/UnsupportedAttributeException.java
Index: UnsupportedAttributeException.java
===================================================================
RCS file:
/home/cvs/ant/src/main/org/apache/tools/ant/UnsupportedAttributeException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- UnsupportedAttributeException.java 27 Sep 2004 09:03:17 -0000
1.2
+++ UnsupportedAttributeException.java 27 Jan 2005 16:43:09 -0000
1.3
@@ -1,5 +1,5 @@
/*
- * Copyright 2004 The Apache Software Foundation
+ * Copyright 2004-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,16 +19,16 @@
/**
* Used to report attempts to set an unsupported attribute
*
- * @since Ant 1.7
+ * @since Ant 1.6.3
*/
public class UnsupportedAttributeException extends BuildException {
private String attribute;
/**
- * Constructs an unsupport attribute exception
- * @param msg The string containing the message
- * @param attribute The unsupported attribute
+ * Constructs an unsupported attribute exception.
+ * @param msg The string containing the message.
+ * @param attribute The unsupported attribute.
*/
public UnsupportedAttributeException(String msg, String attribute) {
super(msg);
@@ -36,9 +36,9 @@
}
/**
- * The attribute that is wrong
+ * Get the attribute that is wrong.
*
- * @return the attribute name
+ * @return the attribute name.
*/
public String getAttribute() {
return attribute;
1.3 +8 -8
ant/src/main/org/apache/tools/ant/UnsupportedElementException.java
Index: UnsupportedElementException.java
===================================================================
RCS file:
/home/cvs/ant/src/main/org/apache/tools/ant/UnsupportedElementException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- UnsupportedElementException.java 27 Sep 2004 09:03:17 -0000 1.2
+++ UnsupportedElementException.java 27 Jan 2005 16:43:09 -0000 1.3
@@ -1,5 +1,5 @@
/*
- * Copyright 2004 The Apache Software Foundation
+ * Copyright 2004-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -28,16 +28,16 @@
* This will be done once (in the case of a recursive
* call to handlechildren).
*
- * @since Ant 1.6.3 or Ant 1.7 ?
+ * @since Ant 1.6.3
*/
public class UnsupportedElementException extends BuildException {
- private String element;
+ private String element;
/**
- * Constructs an unsupport element exception
- * @param msg The string containing the message
- * @param element The name of the incorrect element
+ * Constructs an unsupported element exception.
+ * @param msg The string containing the message.
+ * @param element The name of the incorrect element.
*/
public UnsupportedElementException(String msg, String element) {
super(msg);
@@ -45,9 +45,9 @@
}
/**
- * The element that is wrong
+ * Get the element that is wrong.
*
- * @return the element name
+ * @return the element name.
*/
public String getElement() {
return element;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]