From d5d9904316eab4120a6f2478a6e0e4419a93b2e8 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Tue, 4 Sep 2007 11:06:15 +0000 Subject: [PATCH] checkstyle git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@572616 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Touch.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Touch.java b/src/main/org/apache/tools/ant/taskdefs/Touch.java index 5547376d0..59f242fd6 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Touch.java +++ b/src/main/org/apache/tools/ant/taskdefs/Touch.java @@ -270,7 +270,7 @@ public class Touch extends Task { /** * Execute the touch operation. - * + * * @throws BuildException * if an error occurs. */ @@ -344,7 +344,7 @@ public class Touch extends Task { String[] mapped = fileNameMapper.mapFileName(r.getName()); if (mapped != null && mapped.length > 0) { long modTime = defaultTimestamp; - if (millis < 0 && r.isExists()){ + if (millis < 0 && r.isExists()) { modTime = r.getLastModified(); } for (int i = 0; i < mapped.length; i++) {