Since we're dropping in individual files here, always assume out of date rather than using the directory's modification time. Eventually, maybe we can scan the directory for the newest file and use that, but we'll cross that bridge later.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@346 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Mike Thomas
2007-11-13 17:49:05 +00:00
parent d5315690a6
commit a0b5874d5f
@@ -61,5 +61,10 @@ public class DirectoryComponentBundlerTask extends ComponentBundlerTask
return TrimmedTileSet.trimTileSet(aset, fout, "png");
}
}
@Override // documentation inherited
protected boolean outOfDate (Object source, File target)
{
// Since we're updating individual files, assume always out of date and rebuild.
return true;
}
}