recompile in all cases for now
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/ed3795ff Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/ed3795ff Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/ed3795ff Branch: refs/heads/maven Commit: ed3795fff3137ef671a7b8359fef9839b396f003 Parents: 5105d81 Author: Alex Harui <[email protected]> Authored: Sun Apr 6 19:33:58 2014 -0700 Committer: Alex Harui <[email protected]> Committed: Sun Apr 6 19:33:58 2014 -0700 ---------------------------------------------------------------------- flex-compiler-oem/src/flex2/tools/oem/internal/OEMReport.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ed3795ff/flex-compiler-oem/src/flex2/tools/oem/internal/OEMReport.java ---------------------------------------------------------------------- diff --git a/flex-compiler-oem/src/flex2/tools/oem/internal/OEMReport.java b/flex-compiler-oem/src/flex2/tools/oem/internal/OEMReport.java index 0181884..716ea8f 100644 --- a/flex-compiler-oem/src/flex2/tools/oem/internal/OEMReport.java +++ b/flex-compiler-oem/src/flex2/tools/oem/internal/OEMReport.java @@ -293,6 +293,10 @@ public class OEMReport implements Report public boolean contentUpdated() { + // AJH for now, just return true to force another build. Someday be smarter about what sources + // we have and what their time stamps are. + return true; + /* for (Iterator<String> i = timestamps.keySet().iterator(); i.hasNext(); ) { String path = i.next(); @@ -305,6 +309,7 @@ public class OEMReport implements Report } } return false; + */ } public String[] getSourceNames(Object report)
