From 2a0461182aad7739c02033edbcca592d41d390a3 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Mon, 16 May 2005 15:47:33 +0000 Subject: [PATCH] apply apache rules as to position of + on a multiline string git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278271 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/CopyPath.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/CopyPath.java b/src/main/org/apache/tools/ant/taskdefs/CopyPath.java index d62a2a12e..46e33fdfb 100644 --- a/src/main/org/apache/tools/ant/taskdefs/CopyPath.java +++ b/src/main/org/apache/tools/ant/taskdefs/CopyPath.java @@ -173,10 +173,10 @@ public class CopyPath extends Task { preserveLastModified, null, null, getProject()); } catch (IOException ioe) { - String msg = "Failed to copy " + - sourceFile + - " to " + - destFile + String msg = "Failed to copy " + + sourceFile + + " to " + + destFile + " due to " + ioe.getMessage(); if (destFile.exists() && !destFile.delete()) { msg += " and I couldn't delete the corrupt " + destFile;