View | Details | Raw Unified | Return to bug 59379
Collapse All | Expand All

(-)a/src/main/org/apache/tools/ant/taskdefs/Get.java (-2 / +4 lines)
Lines 203-210 public class Get extends Task { Link Here
203
        throws IOException {
203
        throws IOException {
204
204
205
        if (dest.exists() && skipExisting) {
205
        if (dest.exists() && skipExisting) {
206
            log("Destination already exists (skipping): "
206
            if (!quiet) {
207
                + dest.getAbsolutePath(), logLevel);
207
                log("Destination already exists (skipping): "
208
                    + dest.getAbsolutePath(), logLevel);
209
            }
208
            return true;
210
            return true;
209
        }
211
        }
210
212

Return to bug 59379