Hi Glenn!
Thanks for the link!
Here comes the diff.file
[EMAIL PROTECTED] wrote:
>
> Take a peak at http://jakarta.apache.org/guidelines/source.html for
> instructions on how to submit a patch to the group. If the commitors
> aren't too busy, they usually give a response in a couple of days.
>
73d72
< private boolean forceOverwrite = false;
87,90d85
< public void setForceoverwrite(String force) {
< forceOverwrite = Project.toBoolean(force);
< }
<
92,102c87,96
< if (forceOverwrite ||
< (srcFile.lastModified() > destFile.lastModified())) {
< try {
< project.copyFile(srcFile, destFile, filtering,
forceOverwrite);
< } catch (IOException ioe) {
< String msg = "Error copying file: " +
srcFile.getAbsolutePath()
< + " due to " + ioe.getMessage();
< throw new BuildException(msg);
< }
< }
< }
---
> if (srcFile.lastModified() > destFile.lastModified()) {
> try {
> project.copyFile(srcFile, destFile, filtering);
> } catch (IOException ioe) {
> String msg = "Error copying file: " +
> srcFile.getAbsolutePath()
> + " due to " + ioe.getMessage();
> throw new BuildException(msg);
> }
> }
> }