From 65f4b403f2a625b13fd2974a2707305844631868 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Tue, 31 Dec 2013 14:32:19 +0000 Subject: [PATCH] whitespace git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1554521 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tools/ant/taskdefs/ManifestClassPath.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java b/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java index badd749c2..497c0a195 100644 --- a/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java +++ b/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java @@ -54,13 +54,13 @@ public class ManifestClassPath extends Task { */ public void execute() { if (name == null) { - throw new BuildException("Missing 'property' attribute!"); + throw new BuildException("Missing 'property' attribute!"); } if (dir == null) { - throw new BuildException("Missing 'jarfile' attribute!"); + throw new BuildException("Missing 'jarfile' attribute!"); } if (getProject().getProperty(name) != null) { - throw new BuildException("Property '" + name + "' already set!"); + throw new BuildException("Property '" + name + "' already set!"); } if (path == null) { throw new BuildException("Missing nested !"); @@ -104,9 +104,8 @@ public class ManifestClassPath extends Task { // No match, so bail out! if (relPath.equals(canonicalPath) || relPath.startsWith(tooLongPrefix)) { - throw new BuildException( - "No suitable relative path from " - + dir + " to " + fullPath); + throw new BuildException("No suitable relative path from " + + dir + " to " + fullPath); } if (pathEntry.isDirectory() && !relPath.endsWith("/")) {