Browse Source

whitespace

master
Stefan Bodewig 8 years ago
parent
commit
85ff7bf694
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      src/main/org/apache/tools/ant/IntrospectionHelper.java

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

@@ -408,14 +408,14 @@ public final class IntrospectionHelper {
throw new UnsupportedAttributeException(msg, attributeName);
}
if (as != null) { // possible if value == null
try {
as.setObject(p, element, value);
} catch (final IllegalAccessException ie) {
// impossible as getMethods should only return public methods
throw new BuildException(ie);
} catch (final InvocationTargetException ite) {
throw extractBuildException(ite);
}
try {
as.setObject(p, element, value);
} catch (final IllegalAccessException ie) {
// impossible as getMethods should only return public methods
throw new BuildException(ie);
} catch (final InvocationTargetException ite) {
throw extractBuildException(ite);
}
}
}



Loading…
Cancel
Save