Browse Source

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
master
Matthew Jason Benson 20 years ago
parent
commit
7e48ae3ffa
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      src/main/org/apache/tools/ant/taskdefs/Delete.java

+ 3
- 4
src/main/org/apache/tools/ant/taskdefs/Delete.java View File

@@ -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;
}


Loading…
Cancel
Save