From 85ff7bf6949f62f760e8f487a2ec6fd0152eef78 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Wed, 21 Dec 2016 10:32:14 +0100 Subject: [PATCH] whitespace --- .../apache/tools/ant/IntrospectionHelper.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/org/apache/tools/ant/IntrospectionHelper.java b/src/main/org/apache/tools/ant/IntrospectionHelper.java index 719f22d9d..2b31e432f 100644 --- a/src/main/org/apache/tools/ant/IntrospectionHelper.java +++ b/src/main/org/apache/tools/ant/IntrospectionHelper.java @@ -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); + } } }