ehatcher 02/04/29 09:47:00
Modified: src/main/org/apache/tools/ant IntrospectionHelper.java
Log:
fix line length issues
Revision Changes Path
1.42 +4 -2
jakarta-ant/src/main/org/apache/tools/ant/IntrospectionHelper.java
Index: IntrospectionHelper.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/IntrospectionHelper.java,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- IntrospectionHelper.java 27 Apr 2002 12:51:02 -0000 1.41
+++ IntrospectionHelper.java 29 Apr 2002 16:47:00 -0000 1.42
@@ -407,7 +407,8 @@
*/
public void setAttribute(Project p, Object element, String attributeName,
String value) throws BuildException {
- AttributeSetter as = (AttributeSetter)
attributeSetters.get(attributeName);
+ AttributeSetter as
+ = (AttributeSetter) attributeSetters.get(attributeName);
if (as == null) {
if (element instanceof DynamicConfigurator) {
DynamicConfigurator dc = (DynamicConfigurator) element;
@@ -416,7 +417,8 @@
}
else {
String msg = getElementName(p, element) +
- " doesn't support the \"" + attributeName + "\"
attribute.";
+ " doesn't support the \"" + attributeName +
+ "\" attribute.";
throw new BuildException(msg);
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>