Browse Source

fix line length issues

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272592 13f79535-47bb-0310-9956-ffa450edef68
master
Erik Hatcher 23 years ago
parent
commit
b717d55f3d
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      src/main/org/apache/tools/ant/IntrospectionHelper.java

+ 4
- 2
src/main/org/apache/tools/ant/IntrospectionHelper.java View File

@@ -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);
}
}


Loading…
Cancel
Save