From b717d55f3d1f5d900666430af1cd5dfd1e8c2f49 Mon Sep 17 00:00:00 2001 From: Erik Hatcher Date: Mon, 29 Apr 2002 16:47:00 +0000 Subject: [PATCH] fix line length issues git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272592 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/IntrospectionHelper.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/IntrospectionHelper.java b/src/main/org/apache/tools/ant/IntrospectionHelper.java index e288d678c..ab0b38bf7 100644 --- a/src/main/org/apache/tools/ant/IntrospectionHelper.java +++ b/src/main/org/apache/tools/ant/IntrospectionHelper.java @@ -407,7 +407,8 @@ public class IntrospectionHelper implements BuildListener { */ 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 @@ public class IntrospectionHelper implements BuildListener { } else { String msg = getElementName(p, element) + - " doesn't support the \"" + attributeName + "\" attribute."; + " doesn't support the \"" + attributeName + + "\" attribute."; throw new BuildException(msg); } }