From 434193d088f3b5b526ed7d7ff5ea21917c9b90d9 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Sun, 1 May 2016 06:35:51 +0200 Subject: [PATCH] whitespace --- .../org/apache/tools/ant/taskdefs/Get.java | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Get.java b/src/main/org/apache/tools/ant/taskdefs/Get.java index c636ab54c..5ff9a5403 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Get.java +++ b/src/main/org/apache/tools/ant/taskdefs/Get.java @@ -135,23 +135,23 @@ public class Get extends Task { } } - //set up logging - final int logLevel = Project.MSG_INFO; - DownloadProgress progress = null; - if (verbose) { - progress = new VerboseProgress(System.out); - } + //set up logging + final int logLevel = Project.MSG_INFO; + DownloadProgress progress = null; + if (verbose) { + progress = new VerboseProgress(System.out); + } - //execute the get - try { - doGet(source, dest, logLevel, progress); - } catch (final IOException ioe) { - log("Error getting " + source + " to " + dest); - if (!ignoreErrors) { - throw new BuildException(ioe, getLocation()); + //execute the get + try { + doGet(source, dest, logLevel, progress); + } catch (final IOException ioe) { + log("Error getting " + source + " to " + dest); + if (!ignoreErrors) { + throw new BuildException(ioe, getLocation()); + } } } - } } /**