Browse Source

Fixed check for differences. As it was, check would be ignored for all

files after the manifest file.

PR:	1125
Submitted by:	Michael Ondrejko <mondrejko@acm.org>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269360 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 24 years ago
parent
commit
275c9f734c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java View File

@@ -579,8 +579,8 @@ public class WeblogicDeploymentTool extends GenericDeploymentTool {
//File other then class changed rebuild
log("Non class file " + genericEntry.getName() + " has changed",Project.MSG_VERBOSE);
rebuild = true;
break;
}
break;
}
}
}


Loading…
Cancel
Save