Browse Source

whitespace

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1026986 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 14 years ago
parent
commit
66750f9349
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      src/main/org/apache/tools/ant/taskdefs/SignJar.java

+ 6
- 6
src/main/org/apache/tools/ant/taskdefs/SignJar.java View File

@@ -402,12 +402,12 @@ public class SignJar extends AbstractJarSignerTask {
}

try {
//DO NOT SET THE -signedjar OPTION if source==dest
//unless you like fielding hotspot crash reports
if (!FILE_UTILS.areSame(jarSource, targetFile)) {
addValue(cmd, "-signedjar");
addValue(cmd, targetFile.getPath());
}
//DO NOT SET THE -signedjar OPTION if source==dest
//unless you like fielding hotspot crash reports
if (!FILE_UTILS.areSame(jarSource, targetFile)) {
addValue(cmd, "-signedjar");
addValue(cmd, targetFile.getPath());
}
} catch (IOException ioex) {
throw new BuildException(ioex);
}


Loading…
Cancel
Save