From 084ff1eb97a45252ae009abff8e513d28269253d Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 25 Jul 2003 09:11:50 +0000 Subject: [PATCH] whitespace changes git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274947 13f79535-47bb-0310-9956-ffa450edef68 --- .../tools/ant/input/DefaultInputHandler.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/org/apache/tools/ant/input/DefaultInputHandler.java b/src/main/org/apache/tools/ant/input/DefaultInputHandler.java index e2e38985f..a88f0fe09 100644 --- a/src/main/org/apache/tools/ant/input/DefaultInputHandler.java +++ b/src/main/org/apache/tools/ant/input/DefaultInputHandler.java @@ -86,16 +86,16 @@ public class DefaultInputHandler implements InputHandler { try { in = new DataInputStream(new KeepAliveInputStream(getInputStream())); - do { - System.err.println(prompt); - try { - String input = in.readLine(); - request.setInput(input); - } catch (IOException e) { - throw new BuildException("Failed to read input from Console.", - e); - } - } while (!request.isInputValid()); + do { + System.err.println(prompt); + try { + String input = in.readLine(); + request.setInput(input); + } catch (IOException e) { + throw new BuildException("Failed to read input from" + + " Console.", e); + } + } while (!request.isInputValid()); } finally { if (in != null) { try {