From 7e48ae3ffadad2fa252b2736a10f8c044e837269 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Fri, 29 Apr 2005 18:38:51 +0000 Subject: [PATCH] I'm so particular about capitalizing "Ant". git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278200 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Delete.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Delete.java b/src/main/org/apache/tools/ant/taskdefs/Delete.java index 2aea777e7..3b233d94f 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Delete.java +++ b/src/main/org/apache/tools/ant/taskdefs/Delete.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2004 The Apache Software Foundation + * Copyright 2000-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -558,9 +558,8 @@ public class Delete extends MatchingTask { if (deleteOnExit) { int level = quiet ? Project.MSG_VERBOSE : Project.MSG_INFO; log("Failed to delete " + f + ", calling deleteOnExit." - + " This attempts to delete the file when the ant jvm" - + " has exited and might not succeed." - , level); + + " This attempts to delete the file when the Ant jvm" + + " has exited and might not succeed.", level); f.deleteOnExit(); return true; }