Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cescoffier committed Nov 22, 2010
1 parent 43d20e2 commit d496892
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -337,7 +337,7 @@ private void generateIntermediateAp_() throws MojoExecutionException {
public boolean accept(File file) {
for (String pattern : AbstractScanner.DEFAULTEXCLUDES) {
if (AbstractScanner.match(pattern, file.getAbsolutePath())) {
getLog().debug("Excluding " + file.getName() + " from resource copy : matching " + pattern);
getLog().debug("Excluding " + file.getName() + " from asset copy : matching " + pattern);
return false;
}
}
Expand All @@ -364,7 +364,7 @@ public boolean accept(File file) {
public boolean accept(File file) {
for (String pattern : AbstractScanner.DEFAULTEXCLUDES) {
if (AbstractScanner.match(pattern, file.getAbsolutePath())) {
getLog().debug("Excluding " + file.getName() + " from resource copy : matching " + pattern);
getLog().debug("Excluding " + file.getName() + " from asset copy : matching " + pattern);
return false;
}
}
Expand Down

0 comments on commit d496892

Please sign in to comment.