Author: bodewig
Date: Tue Dec 31 14:32:19 2013
New Revision: 1554521
URL: http://svn.apache.org/r1554521
Log:
whitespace
Modified:
ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
Modified:
ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java?rev=1554521&r1=1554520&r2=1554521&view=diff
==============================================================================
---
ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
(original)
+++
ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
Tue Dec 31 14:32:19 2013
@@ -54,13 +54,13 @@ public class ManifestClassPath extends T
*/
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 <classpath>!");
@@ -104,9 +104,8 @@ public class ManifestClassPath extends T
// 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("/")) {