Browse Source

fix bug I introduced

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@671686 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 17 years ago
parent
commit
f4b28f1de4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/types/resources/ContentTransformingResource.java

+ 1
- 1
src/main/org/apache/tools/ant/types/resources/ContentTransformingResource.java View File

@@ -237,7 +237,7 @@ public abstract class ContentTransformingResource extends Resource {
* @return whether this Resource is a FileProvider. * @return whether this Resource is a FileProvider.
*/ */
public boolean isFilesystemOnly() { public boolean isFilesystemOnly() {
return getResource().isFilesystemOnly();
return false;
} }


/** /**


Loading…
Cancel
Save