Browse Source

Change Jar so empty jars are not rebuilt

PR:	6069
Submitted by:	jesse.glick@netbeans.com (Jesse Glick)


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271136 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 23 years ago
parent
commit
07b48c8512
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Jar.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Jar.java View File

@@ -370,7 +370,7 @@ public class Jar extends Zip {
protected boolean createEmptyZip(File zipFile) { protected boolean createEmptyZip(File zipFile) {
// Jar files always contain a manifest and can never be empty // Jar files always contain a manifest and can never be empty
return false;
return true;
} }
/** /**


Loading…
Cancel
Save